mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
13 lines
377 B
JavaScript
13 lines
377 B
JavaScript
|
function onboardingCallback(authCode, sharedId) {
|
||
|
fetch(PayPalCommerceGatewayOnboarding.endpoint, {
|
||
|
method: 'POST',
|
||
|
headers: {
|
||
|
'content-type': 'application/json'
|
||
|
},
|
||
|
body: JSON.stringify({
|
||
|
authCode: authCode,
|
||
|
sharedId: sharedId,
|
||
|
nonce: PayPalCommerceGatewayOnboarding.nonce
|
||
|
})
|
||
|
});
|
||
|
}
|