Questions tagged [google-developers-console]

Before you can integrate Google APIs into your application, you must have a Google Developers Console project.

In order to access any of the Google APIs you must have a project to identify you.

Projects are created on Google developer console website.

796 questions
2
votes
1 answer

Google Console - How to add Authorized redirect URIs via API

Whenever I want to add any authorized redirect URI in the credentials section, I must have to google console and add it. Is there any API available that I can use in the script, I have googled it a lot but couldn't find anything related to it.
Vishal
  • 7,113
  • 6
  • 31
  • 61
2
votes
1 answer

How to solve "failed to parse Content-Range Header" in google drive API for performing resumable uploads

I am working on a code to perform resumable uploads on google drive via google drive API. I am stuck with the error "Failed to parse Content-Range-Header". Here is a sample code that I have. const new_access_token = await refreshAccessToken() #…
2
votes
1 answer

How to avoid security assessment for Gmail API integration

I am fetching Gmail inbox to the web application by using Gmail API. I am using RestAPI to connect with the web application. Everything is working and ready to go live. But the app is rejected by Google and asks for a Security assessment which has…
2
votes
1 answer

How to Set Gmail's Alternative Email as Support Email in Google Developer Console oAuth Consent Screen

I have a @gmail.com account where I have added my domain's email as the alternative email @domain.com. I can use @domain.com to login to my gmail account instead of @gmail.com account I have created a Google Cloud Project and want to add the…
2
votes
1 answer

How or Where can I see users who signed in with Google signIn in the google console?

I have an app that I am implementing sign-in with google to it. How do I see the users who signed in with google from the google console? Is this possible? Also how can I, from my google account, see which apps I have signed in using sign in with…
YulePale
  • 6,688
  • 16
  • 46
  • 95
2
votes
1 answer

get "clear is not a function" from console on chrome dev tool

I hope anyone could help me understand this situation. So, I wanted to clear the console after trying some simple codes like... const smt = {printThis(){console.log(this)}}; smt.printThis(); and then typed clear as always, to clear it. But then got…
seyeonPark
  • 23
  • 4
2
votes
1 answer

User has downloaded version of our app that is not released yet

We just uploaded the newest version of our app to the Android Play Store Developers Console - its saved but not yet submitted for review. However, about 3 minutes after we uploaded it we got several app generated emails reporting errors from this…
rolinger
  • 2,787
  • 1
  • 31
  • 53
2
votes
1 answer

Google OAuth Consent Screen is still showing confusing scope checkboxes

I've seen other questions who shared this same issue here and here, but the solutions are not working for us. Our users are confused with the checkboxes since they haven't seen them on other apps before and it's making them more paranoid about the…
2
votes
0 answers

Error 400 : redirect_uri_mismatch JavaScript origin with google apps script

I want to build a web app and it should be deployed as me because i don't want force users to accept som risky authorisation but at the same time i need to know their adress email. thats why i thought about google login API when i tried to run it i…
2
votes
1 answer

Google Cloud API Services Oauth with a Testing App

I have a small personal-use only app that logs into a [throw away] gmail account to pull out an auth-token so it can then run a scheduled job (turning on/off my home cameras). Its dead simple and works, except that the app is in GCP TEST mode and it…
2
votes
2 answers

In-App Review Popup window not showing again once "Not Now" is pressed

This below code returns successful even when user has cancelled before submitting review and popup window for review does not showing up again. (Shows only for 1st time) How can re-launch the In-App Review popup when user has not submitted ? …
2
votes
1 answer

The current user has insufficient permissions to perform the requested operation - Google Play Developer API

I have a Google Dev Console process with Google Play Developer API is enabled and the project is linked to Google Play project. In Google Dev console project, created a service account (I'm an owner of the project). After that i create a json file…
2
votes
0 answers

application rejected from Google play "Need login credentials for app review"

I upload my application to google play first time I forgot to sent login credentials so application rejected. but I updated application and send credentials in 'app-content' section in google console. I receive e-mail that say application rejected…
2
votes
1 answer

Is there any mechanism for uploading .AAB updates to Google Play from command line rather than thru a web browser?

For scripting purposes I want to be able to do nightly builds and upload .AAB to my closed testing channel. Is it possible to do this from a command line or am I stuck using a human to point and click on Google Developer Console?
spartygw
  • 3,289
  • 2
  • 27
  • 51
2
votes
1 answer

Google Search Console API not returning all the results

I am trying to get stats for all the pages in my domain in June. When I execute the following request: request = { 'startDate': '2021-06-01', 'endDate': '2021-06-30', 'dimensions': ['page'], 'startRow':…