Questions tagged [android-pay]

Android Pay (formerly Google Wallet) is a virtual representation of your wallet securely stored in the cloud. Your payment credentials, coupons/offers, and loyalty cards can then be easily accessed from any device or purchase flow that supports Android Pay.

Android Pay (formerly Google Wallet) is a virtual representation of your wallet securely stored in the cloud. Your payment credentials, coupons/offers, and loyalty cards can then be easily accessed from any device or purchase flow that supports Android Pay.

Please note that while Android In-App Billing leverages Android Pay, IAB questions should be tagged with

542 questions
5
votes
1 answer

Multiple Google Merchant accounts for a single Google Play Developer account?

I am developing an Android application for another company. I would like to release this application under my own Google Play account. The application will have in-app billing. Can I have multiple Google Merchant accounts, so that in-app payments…
5
votes
1 answer

Google Wallet : No forms of payment available

I'm new to developing Android apps and some apps of mine are paid. 5 people have bought my app till now. Google Wallet notices that "You have no valid forms of payment available. This account has no valid form of payment. Please specify a form of…
EastBK
  • 411
  • 1
  • 8
  • 16
5
votes
1 answer

How do I get notified when orders get charged on Google Wallet?

I'm moving my site's payment processing from Google Checkout to Google Wallet (Digital Goods API), but I'm running into an issue involving payment notification. My goal is to only send licenses to customers after orders are charged, but I don't see…
BadgerPriest
  • 723
  • 5
  • 11
5
votes
3 answers

Why confirm purchase using postback URL?

Google Wallet docs (for digital goods) say: Note: These callback handlers are not secure. Someone could use Firebug or the Chrome Developer Tools to call one of the functions, mocking a success or failure. You should confirm the purchase on…
ispiro
  • 26,556
  • 38
  • 136
  • 291
5
votes
1 answer

How do I test my Google Wallet integration when I can't "purchase from myself" in sandbox?

I'm integrating google wallet with a php-game. I've come to the part where I want to test if my postback-script does it's job, but I can't seem to find any information on how to make a test purchase. I get this error when I try: I'm in the sandbox…
L42
  • 3,052
  • 4
  • 28
  • 49
5
votes
1 answer

Does Google Wallet for Digital Goods support automated refunds?

Does this API only support payments from a buyer to the merchant and nothing else? It seems that this in-app purchase API has no support for programmatically handling refunds and cancellations.. I love the embedded experience, but I need a slightly…
Atticus
  • 6,585
  • 10
  • 35
  • 57
5
votes
1 answer

Will I get a postback each month when using subscriptions?

I am using Google Wallet For Digital Goods. Will I get a callback each month when money gets transferred or will the postback URL only get called once when setting up the subscription?
dflorey
  • 1,828
  • 3
  • 19
  • 31
4
votes
2 answers

How to test android pay App in India

We are trying to integrate android pay functionality into our android application using below tutorial link: https://developers.google.com/android-pay/android/tutorial To test this, we need "Android pay" app installed on device,so we have…
Yogesh Chander
  • 129
  • 1
  • 8
4
votes
2 answers

Android Pay - How to detect if Android Pay is installed?

There is this code (taken from https://stackoverflow.com/a/5016624/1369016): private boolean isAppInstalled(String packageName) { PackageManager pm = getPackageManager(); boolean installed = false; try { pm.getPackageInfo(packageName,…
4
votes
0 answers

Google in App Billing verification failed sometimes

Our server is not able to verify signature for Google Wallet sometimes. Sometimes it works, sometimes verification failed. We are using following guide - https://developer.android.com/google/play/billing/billing_integrate.html and following Java…
user12384512
  • 3,362
  • 10
  • 61
  • 97
4
votes
1 answer

Blank screen on checkout with chrome inapp payment

I have enabled inapp purchases in my chrome extension. I have been getting reports that people that don't have google wallet account, and people trying to add a new card are not able to make a purchase. Here is an image of what happens: I can't…
4
votes
1 answer

Testing Chrome In App Payments

I am looking to integerate IAP (https://developer.chrome.com/webstore/payments-iap) in to my extenstion but I can't seem to find a way to test payments. If I switch the env to sandbox I get and error of type "ENV_NOT_SUPPORTED_ERROR"
4
votes
1 answer

In-App purchase fetching buyer email after purchasing

Is there a way to get the buyer's email after purchasing using the google wallet, I am using the IabHelper.launchSubscriptionPurchaseFlow, and there is only two objects retrieved (IabResult and Purchase) after the success purchasing (Subscription),…
4
votes
0 answers

Not able to create merchant sandbox account for google wallet api for digital goods

I am trying to integrate my django web app with google wallet api for digital goods to handle payments. I am using this tutorial: https://developers.google.com/wallet/digital/docs/tutorial For creating sandbox merchant account for seller, I click on…
Maninder Singh
  • 829
  • 1
  • 7
  • 13
4
votes
1 answer

OpenID realm field for user authentication in packaged chrome app

if I'm using Google OpenID to authenticate users for my packaged app I need to fill in OpenID realm field. The problem is that I have no clue what to enter. The documentation sais: In the text field that appears, enter the realm that your app will…