Questions tagged [androidpublisher]
15 questions
8
votes
1 answer
ACCESS_TOKEN_SCOPE_INSUFFICIENT 403 Request had insufficient authentication scopes domain global
to check inapp purchase i have used this api https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/purchases/products/{productId}/tokens/{token} and got this response.
{
"error": {
"code": 403,
…

Mahmudul Hasan
- 81
- 1
- 1
- 2
4
votes
4 answers
Android Publisher: "Track names in request path and request body must match."
I'm using the google-api-python-client library to upload apks to Google Playstore. All worked well until today. I did not modify my upload script but now i am getting the error:
googleapiclient.errors.HttpError:

DanielGrams
- 45
- 4
3
votes
0 answers
How to upload two deobfuscationfiles for one APK using androidpublisher?
Is it possible to upload "ReTrace mapping file" and "Native debug symbols" simultaneously for a single APK?
We use "androidpublisher_v3" from googleapis npm package ("googleapis": "^70.0.0") in our application and we manage to publish a new APK with…

max-zaytsev
- 31
- 3
2
votes
1 answer
How to submit 2FA credentials for my app in google playstore console
I have an app that requires checkmobi phone number verification for login. However, when app was published to playstore, it was rejected because login credentials were not supplied. How do I supply this sort of credentials to google playstore…

Joseph Ofem
- 304
- 2
- 15
1
vote
0 answers
I'm using the androidpublisher.NewService from the Go package to use the Google Play developer API. Which of the following methods is correct?
I found out It seems that there are two way availalbe. Which of the following methods is correct?
androidpublisher.NewService(ctx, option.WithHTTPClient(...))
func (_this *Factory) AccessToGoogle() (fac *Factory) {
ctx :=…

naenae0210
- 11
- 1
1
vote
1 answer
Google API - Reply to Reviews (androidpublisher) Error 401
I'm trying to connect from Swift app I built to Google's Reply to Reviews API which is part of https://www.googleapis.com/auth/androidpublisher scope, in order to get a list of a specific app reviews. I created a Service Account and with that I…

ytpm
- 4,962
- 6
- 56
- 113
1
vote
1 answer
How to trace http.Client with httptrace in Go
Per this doc, we can trace http.Client with httptrace in this way
t := &transport{}
req, _ := http.NewRequest("GET", "https://google.com", nil)
trace := &httptrace.ClientTrace{
GotConn: t.GotConn,
}
req =…

zangw
- 43,869
- 19
- 177
- 214
1
vote
0 answers
Google Android Publisher API inappproducts.insert permission error
I'm trying to have my server automatically create android in app payment products.
I'm currently using the googleapis npm package and a service account. The service account has the View financial data, Manage orders and subscriptions, and View app…

MichaelK
- 101
- 8
0
votes
0 answers
use GoogleNetHttpTransport.newTrustedTransport() func, return a error! java.lang.ExceptionInInitializerError
This is my maven dependent libraries.
com.google.apis
google-api-services-androidpublisher
v3-rev20230615-2.0.0
…

harry li
- 1
0
votes
0 answers
Google Reply to Reviews API only return results of last 7 days
I'm trying to connect to Reply to Reviews API and get my app reviews, I do get them, but it only return results from the last 7 days. According to Google docs it needs to return:
{
"pageInfo": {},
"reviews": [],
"tokenPagination": {}
…

ytpm
- 4,962
- 6
- 56
- 113
0
votes
0 answers
Daily save quota exceeded
Could someone explain what is Daily save quota?
We use "androidpublisher_v3" from googleapis npm package ("googleapis": "^70.0.0") in our "task" for releasing new app versions.
To test this task on different platforms, we run a pipeline several…

max-zaytsev
- 31
- 3
0
votes
0 answers
App cannot be installed from the play store
After implementing the zoom android sdk, app size increased and hence following block was added in the build.gradle.
splits{
abi{
enable true
include "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
universalApk true
}
}
packagingOptions {
jniLibs…

user123
- 73
- 1
- 9
0
votes
1 answer
POST file upload, Invalid JSON payload
I am trying to upload a bundle with the android publisher api of google using Node.js :
const https = require('https');
const fs = require('fs');
const bundle_path = ...
const package = ...
const editID = ...
const token = ...
const options = {
…

Teddy Vallar
- 59
- 6
0
votes
1 answer
systemapks.variants.download doesn't pop up any error message and download anything
After execute create method, use valid variantId to execute request as "https://developers.google.com/android-publisher/api-ref/rest/v3/systemapks.variants/download" suggested, no error pops up and nothing is downloaded.
service =…

tony
- 3
- 2
0
votes
1 answer
How to get the list of reviews using Google Developer API and Firebase functions?
I need to access to my app reviews, using Google Developer API and Firebase Functions.
My code in Firebase Functions:
const functions = require('firebase-functions')
const admin =…

cmii
- 3,556
- 8
- 38
- 69