Can I directly verify transactional billing information in an application with an Android Market server?

If I have json string transaction information:

{ "nonce" : 1836535032137741465, "orders" : { "notificationId" : "android.test.purchased", "orderId" : "transactionId.android.test.purchased", "packageName" : "com.example.dungeons", "productId" : "android.test.purchased", "developerPayload" : "bGoa+V7g/yqDXvKRqq+JTFn4uQZbPiQJo4pf9RzJ", "purchaseTime" : 1290114783411, "purchaseState" : 0 } } 

Can I upload it to the Android Market server to see if this is true. Like Apple's Way. http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/StoreKitGuide/VerifyingStoreReceipts/VerifyingStoreReceipts.html

Update: I am updating this to get information about this topic.

+7
source share
2 answers

In android, we cannot directly verify transactional billing information in an application with the Android Market server. And I think that there is no need to verify the transaction, because it is very safe. (Nothing like jailbreak in android) :).

+1
source

Sorry, you cannot chat with the android site. Read this link which has other problems as well

this

Update:

Now you can check your subscription for new versions of Android Play. Check this . This requires OAuth because you are requesting permission to access information from Google. However, the process is well documented and you can follow it yourself.

0
source

All Articles