Google Pay API는 PaymentRequest
의 지원되는 다른 결제 수단과 함께 사용할 수 있습니다.
1단계: PaymentDataRequest 객체 만들기
결제 게이트웨이 및 허용된 결제 수단을 지정하여 PaymentDataRequest
객체를 구성합니다.
결제 수단 간의 일관성을 위해 Google Pay API가 아닌 브라우저의 PaymentRequest
options
인수를 통해 배송지 주소, 이메일 주소, 전화번호를 얻는 것이 좋습니다.
결제 사용자 인증 정보와 청구서 수신 주소(선택사항) 수신에만 Google Pay API를 사용합니다.
const googlePaymentDataRequest = { environment: 'TEST', apiVersion: 2, apiVersionMinor: 0, merchantInfo: { // A merchant ID is available after approval by Google. // @see {@link https://developers.google.com/pay/api/web/guides/test-and-deploy/integration-checklist} // merchantId: '12345678901234567890', merchantName: 'Example Merchant' }, allowedPaymentMethods: [{ type: 'CARD', parameters: { allowedAuthMethods: ["PAN_ONLY", "CRYPTOGRAM_3DS"], allowedCardNetworks: ["AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA"] }, tokenizationSpecification: { type: 'PAYMENT_GATEWAY', // Check with your payment gateway on the parameters to pass. // @see {@link https://developers.google.com/pay/api/web/reference/request-objects#gateway} parameters: { 'gateway': 'example', 'gatewayMerchantId': 'exampleGatewayMerchantId' } } }] };
2단계: Google Pay API 지원 선언
Google Pay API의 결제 수단 식별자와 구성을 PaymentRequest
에 전달된 methodData
매개변수에 추가합니다.
const methodData = [ {supportedMethods: 'https://google.com/pay', data: googlePaymentDataRequest}, {supportedMethods: 'basic-card'} ];
총정리
다음 예시에서는 PaymentRequest
에서 지원되는 다른 결제 수단과 Google Pay API를 함께 구현하는 방법을 보여줍니다.
<div id="checkout"> <button id="buyButton">Checkout</button> </div> <script> const allowedCardNetworks = ["AMEX", "DISCOVER", "INTERAC", "JCB", "MASTERCARD", "VISA"]; const allowedCardAuthMethods = ["PAN_ONLY", "CRYPTOGRAM_3DS"]; if (window.PaymentRequest) { const request = createPaymentRequest(); request.canMakePayment() .then(function(result) { if (result) { // Display PaymentRequest dialog on interaction with the existing checkout button document.getElementById('buyButton') .addEventListener('click', onBuyClicked); } }) .catch(function(err) { showErrorForDebugging( 'canMakePayment() error! ' + err.name + ' error: ' + err.message); }); } else { showErrorForDebugging('PaymentRequest API not available.'); } /** * Show a PaymentRequest dialog after a user clicks the checkout button */ function onBuyClicked() { createPaymentRequest() .show() .then(function(response) { // Dismiss payment dialog. response.complete('success'); handlePaymentResponse(response); }) .catch(function(err) { showErrorForDebugging( 'show() error! ' + err.name + ' error: ' + err.message); }); } /** * Define your unique Google Pay API configuration * * @returns {object} data attribute suitable for PaymentMethodData */ function getGooglePaymentsConfiguration() { return { environment: 'TEST', apiVersion: 2, apiVersionMinor: 0, merchantInfo: { // A merchant ID is available after approval by Google. // 'merchantId':'12345678901234567890', merchantName: 'Example Merchant' }, allowedPaymentMethods: [{ type: 'CARD', parameters: { allowedAuthMethods: allowedCardAuthMethods, allowedCardNetworks: allowedCardNetworks }, tokenizationSpecification: { type: 'PAYMENT_GATEWAY', // Check with your payment gateway on the parameters to pass. // @see {@link https://developers.google.com/pay/api/web/reference/request-objects#gateway} parameters: { 'gateway': 'example', 'gatewayMerchantId': 'exampleGatewayMerchantId' } } }] }; } /** * Create a PaymentRequest * * @returns {PaymentRequest} */ function createPaymentRequest() { // Add support for the Google Pay API. const methodData = [{ supportedMethods: 'https://google.com/pay', data: getGooglePaymentsConfiguration() }]; // Add other supported payment methods. methodData.push({ supportedMethods: 'basic-card', data: { supportedNetworks: Array.from(allowedCardNetworks, (network) => network.toLowerCase()) } }); const details = { total: {label: 'Test Purchase', amount: {currency: 'USD', value: '1.00'}} }; const options = { requestPayerEmail: true, requestPayerName: true }; return new PaymentRequest(methodData, details, options); } /** * Process a PaymentResponse * * @param {PaymentResponse} response returned when a user approves the payment request */ function handlePaymentResponse(response) { const formattedResponse = document.createElement('pre'); formattedResponse.appendChild( document.createTextNode(JSON.stringify(response.toJSON(), null, 2))); document.getElementById('checkout') .insertAdjacentElement('afterend', formattedResponse); } /** * Display an error message for debugging * * @param {string} text message to display */ function showErrorForDebugging(text) { const errorDisplay = document.createElement('code'); errorDisplay.style.color = 'red'; errorDisplay.appendChild(document.createTextNode(text)); const p = document.createElement('p'); p.appendChild(errorDisplay); document.getElementById('checkout').insertAdjacentElement('afterend', p); } </script>
결제 수단 매개변수 목록
PaymentRequest
에 전달된 Google Pay API 구성은 다음 예외를 제외하고는 Google Pay API 자바스크립트 클라이언트 라이브러리에서 사용하는 PaymentDataRequest
객체와 비슷합니다.
PaymentOptions
에 설명된 문자열 값과 일치하는 객체에environment
속성을 설정해야 합니다.transactionInfo
속성은 생략해야 합니다. 총 가격과 통화는PaymentRequest
에 전달된details
인수에 지정해야 합니다.
다음은 PaymentRequest
결제 수단 데이터 속성에서 Google Pay API 결제 수단에 지정된 추가 객체 속성입니다.
속성 | 유형 | 필요성 | 설명 |
---|---|---|---|
environment |
문자열 | 선택사항 |
|