My application was working, but after the last update it stopped working. #95
Unanswered
leofvasconcellos
asked this question in
Q&A
Replies: 1 comment 1 reply
-
It looks like you've started using the For Angular you need to use Example: https://stackblitz.com/edit/google-pay-angular-ifuwib <google-pay-button
[paymentAuthorizedCallback]="onPaymentAuthorized"
></google-pay-button> paymentRequest = {
apiVersion: 2,
apiVersionMinor: 0,
// ...
callbackIntents: ['PAYMENT_AUTHORIZATION']
};
onPaymentAuthorized(data) {
console.log('authorized', data);
return {
transactionState: 'SUCCESS'
};
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm using Ionic, Angular and Cordova.
My application was working, but after the last update it stopped working.
My .module
My. Page
My ts.code
When I open my window, on console:
Before clicking the button:
After clicking the button:
Beta Was this translation helpful? Give feedback.
All reactions