0

Im trying to implement server side verification for subscription in app purchase. What platform is better to use for that purpose. I have found end points in google cloud platform but its deprecated. Im using firebase for this project maybe there Is a solution for both of them.

I have found that question on stack and it helped me the high level overview for this process but still not enough information how to start and where i can start. How to verify purchase for android app in server side (google play in app billing v3)

Bo Z
  • 2,359
  • 1
  • 13
  • 31

1 Answers1

0

When Google recommends server-side verification, it means verifying the purchase signature on an external server that could be hosted on simple web hosting. https://developer.android.com/google/play/billing/billing_best_practices

Here is an example of how to implement : https://stackoverflow.com/a/48645216/7690376

from56
  • 3,976
  • 2
  • 13
  • 23
  • thank u. Does google provide any server where i can put that code? – Bo Z Apr 21 '20 at 01:12
  • As far as I know the answer is no. – from56 Apr 21 '20 at 08:38
  • Subscription Based Billing is not possible without server implementation?? – sups Jun 21 '20 at 02:17
  • You don't need a server, but your app will be more protected against fraud if you have one. To verify the signature and for other verifications such as checking non-repeated tokens, with a web hosting and some PHP knowledge you have enough. – from56 Jun 21 '20 at 19:05