Digital River will support Apple Pay as a payment method on the payment service and DigitalRiver.js. Apple Pay is currently available to consumers in 21 countries and currently is supported only on IOS devices (iPhones, Macs, and so on).
You can find an example of integration here (only viewable on Apple devices).
Create an Apple Pay payment method for your app or website in three easy steps:
To offer Apple Pay on your website, you need to validate your domain with Apple before you can accept transactions. To complete the validation:
Click to Download the apple-developer-merchantid-domain-association
file.
Save the file to the following location on the domain where you want to offer Apple Pay:
/.well-known/apple-developer-merchantid-domain-association
Repeat this step for each additional domain where you want to offer Apple Pay. For example:
https://buy.mydomain.com/.well-known/apple-developer-merchantid-domain-association
https://shop.mydomain.com/.well-known/apple-developer-merchantid-domain-association
https://www.mydomain.com/.well-known/apple-developer-merchantid-domain-association
Note: You must serve the apple-developer-merchantid-domain-association
file over HTTPS.
Contact your Digital River representative with the list of domains you want to register.
To create an Apple Pay payment source, please follow the DigitalRiver.js reference guide.
After setting up your library per the DigitalRiver.js reference guide, create an Apple Pay element with any customizations you would like to apply.
var paymentRequestData = digitalriver.paymentRequest({country: "US",currency: "USD",total: {label: "Order Total",amount: 100},displayItems: lineItems,shippingOptions: shippingOptions,style: {buttonType: "plain",buttonColor: "dark",buttonLanguage: "en"},"sessionId": "9f180964-9da4-43ac-b8e0-ae54d832b03c"});var applepay = digitalriver.createElement('applepay', paymentRequestData);
The Apple Pay element will surface events, which will give you more information to facilitate what is happening within the Apple Pay experience.
These events include:
Event | Triggered When |
The created element is loaded and ready to accept an update request. | |
click | A shopper clicked the element's button. |
cancel | The customer has canceled the experience. |
The customer has chosen a different shipping option than was previously selected. You should use this data to re-price your order totals (if applicable). | |
The customer has chosen a different address than was previously selected. You should use this data to re-price your order totals (if applicable). | |
source | The customer has authorized the payment and a source, and DigitalRiver.js returned associated data. |
Note: To use Apple Pay, you must listen to, at minimum, the Shipping Address Changed and Source events.
applepay.on('source', function(event) {var source = result.source;//pass the source to your back end for further processing.//once verified that the source is created successfully, complete the Apple Pay session by answering with a success messageevent.complete('success');});applepay.on('shippingaddresschange', function(event) {var shippingAddress = event.shippingAddress;//create a Payment Request Details Update Objectvar newDetails = createPaymentRequestDetailsUpdateObject();event.updateWith(newDetails);});
The Shipping Address Changed and Shipping Method Changed events require a response of updated details to present to the Shopper. This system expects the response to be in the format of a Payment Request Details Update object.
The following example shows how to place the elements on the page. For more information on placing elements on a page, see the Apple Pay example.
if (applepay.canMakePayment()) {applepay.mount("applepay-element");document.getElementById('applepay-element').style.display = 'block';}
The source event will surface a Source plus other details provided by Apple Pay, like the billing address, shipping address, and contact information of the shopper.
{"clientId": "gc","channelId": "drdod15","liveMode": false,"id": "ee1c11e4-b947-45a2-b9d7-429a1154cfff","clientSecret": "ee1c11e4-b947-45a2-b9d7-429a1154cfff_b99c11e4-b947-45a2-b9d7-429a1154cfff","type": "applePay","reusable": false,"owner": {"firstName": "John","lastName": "Doe","email": "john.doe@gmail.com","address": {"line1": "10380 Bren Rd W","line2": "","city": "Hopkins","state": "MN","country": "US","postalCode": "55343"}},"currency": "USD","state": "chargeable","creationIp": "67.216.233.5","createdTime": "2019-04-26T16:30:33.984Z","updatedTime": "2019-04-26T16:30:33.984Z","flow": "standard","applePay": {}}
{"error": null,"source": {"clientId": "gc","channelId": "drdod15","liveMode": false,"id": "ee1c11e4-b947-45a2-b9d7-429a1154cfff","clientSecret": "ee1c11e4-b947-45a2-b9d7-429a1154cfff_b99c11e4-b947-45a2-b9d7-429a1154cfff","type": "applePay","reusable": false,"owner": {"firstName": "John","lastName": "Doe","email": "john.doe@gmail.com","address": {"line1": "10380 Bren Rd W","line2": "","city": "Hopkins","state": "MN","country": "US","postalCode": "55343"}},"currency": "USD","state": "chargeable","creationIp": "67.216.233.5","createdTime": "2019-04-26T16:30:33.984Z","updatedTime": "2019-04-26T16:30:33.984Z","flow": "standard","applePay": {}},"billingAddress": {"address": {"line1": "10380 Bren Road W","line2": "","city": "Minnetonka","postalCode": "55343","state": "MN","country": "US"},"name": "John Doe","firstName": "John","lastName": "Doe","phone": "+15559895326","email": "jdoe@digitalriver.com"},"shippingAddress": {"name": "John Doe","firstName": "John","lastName": "Doe","phone": "+15559895326","email": "jdoe@digitalriver.com","address": {"line1": "10380 Bren Road W","line2": "","city": "Minnetonka","state": "MN","country": "US","postalCode": "55343"}},"contactInformation": {"name": "John Doe","phone": "+15559895326","email": "test@digitalriver.com"},"elementType": "applePay"}
Once authorized, you can use the source by attaching it to a cart.
{"paymentMethod": {"sourceId": "e7ba0595-059c-460c-bad8-2812123b9313"}}
The following example shows how to place an Apple Pay element on your page. Use this in conjunction with the DigitalRiver.js reference guide to build your solution.HTML
<script src="https://js.digitalriverws.com/v1/DigitalRiver.js"></script><div id="applepay-element"></div>
var digitalriver = new DigitalRiver('YOUR_API_KEY');var applePrData = getBasePrData();var applePayRequestData = digitalriver.paymentRequest(applePrData);var applepay = digitalriver.createElement("applepay", applePayRequestData);if (applepay.canMakePayment()) {applepay.mount("applepay-element");document.getElementById('applepay-element').style.display = 'block';}applepay.on('source', function(event) {console.log("Received Event", event);console.log("GOT APPLE PAY SOURCE ID");event.complete('success');var source = event.source;console.log(source);});applepay.on('shippingaddresschange', function(event) {console.log("Received Shipping Address Change Event", event);var shippingAddress = event.shippingAddress;console.log("Shipping Address", shippingAddress);var newDetails = getPrUpdateObject();console.log('Updating PR With', newDetails);event.updateWith(newDetails);});applepay.on('cancel', function(event) {console.log("Received Event", event);console.log(event);});applepay.on('shippingoptionchange', function(event) {console.log("Received Shipping Option Change Event", event);var shippingOption = event.shippingOption;console.log("Shipping Option", shippingOption);var newDetails = getPrUpdateObject();console.log('Updating PR With', newDetails);event.updateWith(newDetails);});function getBasePrData() {return {country: "US",currency: "USD",total: {label: "Demo Total",amount: 300},displayItems: [{amount: 100,label: "Item"}, {amount: 200,label: "Better Item"}],requestShipping: true,shippingOptions: [{id: "free-shipping",label: "Free Shipping",detail: "Arrives in 5 to 7 days",amount: 0}, {id: "overnight-shipping",label: "Overnight Shipping",detail: "Arrives in 5 to 7 days",amount: 1000}],style: {buttonType: "plain",buttonColor: "light-outline",buttonLanguage: "en"},waitOnClick: false};}function getPrUpdateObject() {return {"status": "success","total": {"label": "New Total","amount": 1020.10},"displayItems": [{"amount": 1000,"label": "Big Screen TV",},{"amount": 20.10,"label": "Shipping and Handling"}],"shippingOptions": [{id: "free-shipping",label: "Free Shipping",detail: "Arrives in 5 to 7 days",amount: 0,selected: true}, {id: "overnight-shipping",label: "Overnight Shipping",detail: "Arrives in 5 to 7 days",amount: 1000}]}}
Apple Pay supports the following geographies and currencies.
Austria (AT), Australia (AU), Belgium (BE), Bulgaria (BG), Brazil (BR), Canada (CA), China (CN), Croatia (HR), Cyprus (CY), Czech Republic (CZ), Denmark (DK), Estonia (EE), Faroe Islands (FO), Finland (FI), France (FR), Germany (DE), Greece (GR), Greenland (GL), Guernsey (GG), Hong Kong (HK), Hungary (HU), Iceland (IS), Ireland (IE), Isle of Man (IM), Italy (IT), Japan (JP), Jersey (JE), Kazakhstan (KZ), Latvia (LV), Liechtenstein (LI), Lithuania (LT), Luxembourg (LU), Macao (MO), Malta (MT), Monaco (MC), Netherlands (NL), Norway (NO), New Zealand (NZ), Poland (PL), Portugal (PT), Romania (RO), Russia (RU), San Marino (SM), Saudi Arabia (SA), Singapore (SG), Slovakia (SK), Slovenia (SI), Spain (ES), Sweden (SE), Switzerland (CH), Taiwan (TW), Ukraine (UA), United Arab Emirates (AE), United Kingdom (GB), United States (US)
AED, ARS, AUD, BHD, BRL, CAD, CHF, CLP, CNY, COP, CZK, DKK, EGP, ETB, EUR, GBP, HKD, IDR, ILS, INR, JOD, JPY, KRW, KWD, LBP, MXN, MYR, NOK, NZD, OMR, PHP, PLN, QAR, RUB, SAR, SEK, SGD, THB, TRY, TWD, UAH, USD, ZAR