- From: Marcos Cáceres <notifications@github.com>
- Date: Tue, 15 Aug 2017 21:22:05 -0700
- To: w3c/payment-request <payment-request@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 16 August 2017 04:22:26 UTC
marcoscaceres commented on this pull request. > + "fetch">Fetch API</a>: + </p> + <pre class="example"> + async function doPaymentRequest() { + const payRequest = new PaymentRequest(methodData, details, options); + const payResponse = await payRequest.show(); + let result = "unknown"; + try { + const httpResponse = await fetch("/process-payment", { + method: "POST", + headers: new Headers({ "Content-Type": "application/json" }), + body: payResponse.toJSON(), + }); + result = httpResponse.ok ? "success" : "fail"; + } catch (err) { + console.error(err); Removed mention of "unknown", as I have a feeling it's it won't survive CR. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/payment-request/pull/583#discussion_r133356438
Received on Wednesday, 16 August 2017 04:22:26 UTC