google-pay

Save credit card to Google Pay

帅比萌擦擦* 提交于 2020-01-03 03:26:06
问题 There are several applications that allow to save a new credit card to a Google Pay. Upon pressing the button, the Google Pay opens with a credit card data pre-filled. However, I couldn't find any mentions of Intents or any API that allow to do that. How do I implement a "save credit/debit card to Google Pay" functionality inside an Android app? 回答1: I don't think what you are after is directly supported. One question that I have for you is why do you want to save the card? Is it for the

Where is Google pay Developer account and how to generate public key to upload in it?

六眼飞鱼酱① 提交于 2019-12-28 07:02:21
问题 No One on Whole of Stack overflow no one has answer to this, I dont know why , has no one worked with Google pay on android?? . According to google : Follow this link : https://developers.google.com/pay/api/android/guides/resources/payment-data-cryptography#key-rotation it talks about key rotation which is mandatory when using DIRECT integration in your App , means if you are not using a payment processor directly/explicitly. here is what it says : Key rotation : If you decrypt a payment

IsReadyToPayRequest.fromJson, cannot resolve method 'fromJson java.lang.string'

£可爱£侵袭症+ 提交于 2019-12-25 01:52:50
问题 I am attempting to integrate Android Pay into my application and I am following the tutorial provided b google. However I am stuck at the point where the IsReadyToPayRequest is executed; IsReadyToPayRequest request = IsReadyToPayRequest.fromJson(getIsReadyToPayRequest().toString()); Task<Boolean> task = mPaymentsClient.isReadyToPay(request); task.addOnCompleteListener( new OnCompleteListener<Boolean>() { @Override public void onComplete(@NonNull Task<Boolean> task) { try { boolean result =

How can create google pay for Ionic 4 (android / ios ) app?

橙三吉。 提交于 2019-12-23 10:40:42
问题 I have created google pay for web using following URL : Google pay for Web I want to create same google pay for ionic 4 app which works on android and ios app How can I create? Any reference... Please guide... Thanks in advance 回答1: If you are using Ionic to write your application, you'll need to make use of native plugins on Android in order to integrate Google Pay in your application (note that at the moment we do not maintain a library on iOS). Once in the JVM domain –both Java or Kotlin–

Google Pay(Tez) Integration into my payment gateway ? (Android)

旧城冷巷雨未停 提交于 2019-12-10 11:45:44
问题 Note : I am aware it is not yet available for iOS, Also i am not looking for Xamarin.Forms(Obviously). Been trying to integrate Google Pay(Tez) API into my Xamarin Application when I realised that there are no guides available for its integration to Xamarin which is fine. So, I visited the Google Pay API page, Which seems to have a sweet looking guide for Android(Java) so I started converting the native Android code into Xamarin . And then I hit a bump where the PaymentsClient class seems to

How to add credit card to Google Pay from my app?

谁说胖子不能爱 提交于 2019-12-03 21:32:17
问题 I'm developing mobile banking app and obviously it manages our bank credit cards. So now I need to implement "Add this card to Google Pay" button in my app but how to do Google Pay API request for this? I am unable to find any related docs. The only one question here on SO has answer which states that our bank should comply to PCI DSS and its done of course. And there are a bunch of docs (including Google official) on how to add any credit card to Google Pay manually, using Google Pay app.