Android Question Rest calls using googleplay apis using json key from google cloud

Markos

Well-Known Member
Licensed User
Longtime User
Hi All,

Any code samples to use the google play api calls to get order details using the json key and converting to jwt or access token etc
 

aeric

Expert
Licensed User
Longtime User
If I understand correctly, I think you don't need to make your own API calls to get the "order" details.

If you mean to query the purchases for Google in-app billing,
B4X:
Wait For (billing.ConnectIfNeeded) Billing_Connected (Result As BillingResult)
    If Result.IsSuccess Then
        Wait For (billing.QueryPurchases("inapp")) Billing_PurchasesQueryCompleted (Result As BillingResult, Purchases As List)
        Log("Query completed: " & Result.IsSuccess)
 
Upvote 0

aeric

Expert
Licensed User
Longtime User
If you mean getting access token for firebase messaging in sending tool (B4J),
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…