1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!doctype html>
<meta charset="utf-8">
<title>Payment Request Testing</title>
<script>
const methods = [
{
supportedMethods: "basic-card",
},
];
const details = {
id: "simple details",
total: {
label: "Donation",
amount: { currency: "USD", value: "55.00" },
},
};
const updatedDetails = {
id: "simple details",
total: {
label: "Donation",
amount: { currency: "USD", value: "55.00" },
},
error: "",
};
window.onmessage = async ({ data: action }) => {
let msg = "successful";
switch (action) {
case "Show Payment":
try {
let request = new PaymentRequest(methods, details);
let responsePromise = await request.show();
} catch (err) {
msg = err.name;
}
window.parent.postMessage(msg, "*")
break;
default:
window.parent.postMessage(`fail - unknown postmessage action: ${action}`, "*");
}
};
window.parent.postMessage("successful", "*");
</script>
|