Questions tagged [google-cloud-console]

The Google Cloud Console is Google's developer experience for managing and viewing traffic data, authentication, and billing information for the Google APIs that your projects use.

You can use one Google Cloud Console project to manage all of your applications, or you can create a different project for each one. In deciding whether to create a new project for a given application, consider whether you're collaborating with a different set of people, want to track usage differently, or would set different traffic controls for each application. If so, segregating applications by project might make sense. You can create multiple projects, but remember that you cannot use multiple projects to try to exceed the limits for API usage by your application.

Creating a project and registering an application

To create a project, do the following:

  • Visit the Google Cloud Console and select "Create Project".
  • Enter a name and a project ID, or accept the defaults
  • Select Create.

To register a new application, do the following:

  • Go to the Google Cloud Console.
  • Select a project, or create a new one.
  • In the sidebar on the left, select APIs & auth, then select Registered apps.
  • At the top of the page, select Register App.
  • Fill out the form and select Register.

More information:

243 questions
0
votes
0 answers

Google Drive Api Won't Work In Release App Version

In My Debug Version Of App , The app works without any error but in release version this happens l9.b: 403 Forbidden GET https://www.googleapis.com/drive/v3/files { "errors": [ { "domain": "global", "reason": "insufficientScopes", …
Waqas Tahir
  • 7,171
  • 5
  • 25
  • 47
0
votes
1 answer

Is the data in the bigquery table overwritten after being transferred from firebase?

When transferring data from Firebase to bigquery to the events_ table, everyday we get data for the previous day in the morning. Is this the final data or will it still be overwritten, similar to Google analytics (overwriting data within 3 days…
0
votes
0 answers

"The server could not update. Check your API credentials and internet connection and try again." - Google Sheets API, service account error

I'm currently building a website/platform following using this: https://forensic-architecture.org/investigation/timemap-for-cartographic-platforms. It works by reading a Google sheet I have, and I need to press an 'update' button in order for the…
0
votes
0 answers

Upgrade Quota for URL Fetch calls in Google Cloud Console Project

I have a Google Sheets Add-On named FintualFinance (available in the Google Workspace Marketplace) that makes calls to an API. An example of the code that makes the calls is: const response = UrlFetchApp.fetch(url + path); My problem is that it the…
0
votes
1 answer

GCP Find users' location within it

I really need some help? In my company we need to check if one of our users is using GCP outside of the location they told us. Is there a way for me to find out which country or get this person's IP via GCP Console? Thanks,
0
votes
0 answers

Should there be Javascript files when downloading Cloud Functions source code?

I am having an issue with a Cloud Function that is returning 401-UNAUTHENTICATED all the time, and I've gone to the Google Cloud Console to download the CF's source code. Is it normal that the .zip file that you get only contains config files and…
0
votes
0 answers

Peculiar situation with GCS

In my GCS bucket, I have a folder structure where the naming convention was done incorrectly. Its named as "11 Jan. 2021 - Documents and Spreads". This is causing the gsutil to throw an exception whenever I try to navigate or download the files. I…
0
votes
0 answers

Authentication Error while sending POST request through FCM REST API with volley

I am sending a POST request to Firebase Cloud Messaging servers using the endpoint https://fcm.googleapis.com/v1/projects/{PROJECT_NAME}/messages:send so as to send notifications to my app. The problem is i am getting an error 401, AUTHENTICATION…
0
votes
0 answers

Quota exceeded for limit of read requests per user per 100 seconds in gspread, but Console Cloud Google showing just 24 requests

I have a program which needs to extract rows from 15 google sheets (and some other requests), but when I run the code if I do not insert a time.sleep(20) between each reading function I receive the following message: Quota exceeded for quota group…
0
votes
1 answer

How or where do i "open up a Cloud Console session"

This question is for one of the steps in the answer to this question: OAuth consent screen - ability to remove application logo "Back on the site, open up a Cloud Console session (The terminal icon in the top menu bar) and paste the modified…
0
votes
2 answers

Enabling all API in Google Cloud project

Google Cloud needs enabled API before many things are possible to be done. Enabling needs just one CLI command, and usually is very fast. Enabling is even proposed by CLI if I try to do something which requires not-enabled API. But it anyway…
0
votes
1 answer

How to use Dialogflow Api.ai V2 in ionic App

I have created a Dialogflow V2 agent and am trying to integrate the same with ionic 4 App. Steps Followed: Created a service account and created a JSON key file from google console. Added the path to ENV variables…
0
votes
1 answer

Devops project management board in Google Cloud platform

Does the Google Cloud platform has the project management board like azure DevOps. If so please someone can provide the details
San Jaisy
  • 15,327
  • 34
  • 171
  • 290
0
votes
0 answers

Laravel api works in browser but not on android app

Laravel api works fine from browser but unable to respond from android app. Is there any configuration changes in laravel api?
Rushikesh
  • 117
  • 1
  • 2
  • 13
0
votes
1 answer

403 while uploading file to Google Drive using react-native-google-drive-api-wrapper

I am trying to upload a file using react-native-google-drive-api-wrapper. I have created a project in the firebase console and able to google login and able to ask permission for accessing google drive. I have followed all the steps mentioned in the…