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
1 answer

How to use IP restrictions when using Google Direction API?

I read in the docs that in order to use Google Direction API Web Service, I needed to use IP restrictions. So to achieve this feature, I've created a proxy server that serve me the direction I want. The link looks like…
0
votes
1 answer

Code displaying an URL rather than the reponse of the request GCP with Go

I'm having hard times trying to display the result of a direction request in Google Cloud Platform. This is what I have tried: package main import ( "fmt" "net/http" "context" "io/ioutil" "google.golang.org/appengine" …
0
votes
1 answer

Unable to create a Collection in Firestore - request blocked:mixed-content

I've been trying to create a new collection at https://console.cloud.google.com/firestore/data?project={PROJECT} however when I do, nothing happens. Opening the dev tools and looking at the Networking tab shows the requests are not going through…
0
votes
1 answer

Google Places API (Entered API key is invalid)

I am having an issue where the API key I generate using Google Cloud Console is not valid. I am trying to use elementor and wordpress to add our business' Google reviews through the Google Places API. It is the first time I have used the google…
0
votes
1 answer

How to enable the Google Drive UI Integration?

A la here: https://console.cloud.google.com/apis/api/drive.googleapis.com/drive_sdk (plus your project name). I've been trying for ages, but each time it returns a bad request.…
satnhak
  • 9,407
  • 5
  • 63
  • 81
0
votes
1 answer

How to publish multiple messages at once (batch processing) using Google Cloud PubSub's console

I could successfully publish one message at a time on Google Cloud Pubsub using the console, and the result shows up in a table in BigQuery. {"ID": 123, "Item1": "aaa", "Item2": "bbb"} BigQuery Table: | ID | Item1 | Item2 | | 123 | aaa | bbb | How…
0
votes
1 answer

Unable to send an email using PHPmailer in Drupal 7

My website https://www.smcin.com/ created in drupal 7 and hosted in google cloud console. I am using PHPmailer smtp module to send email through website using port 25. But not mail has been triggered and give error "test e-mail has NOT been sent…
alok kumar
  • 11
  • 3
0
votes
1 answer

Link a dialogflow agent to a Google Cloud Console project and inherit all the team members i assigned to the project?

How can i create a dialogflow agent and associate it with the Google Cloud Console project i created and have it inherit all the team members i assigned to the project ? I am working on a dialogflow project. I created a new project in the Google…
cyran
  • 31
  • 5
0
votes
1 answer

Can you give blanket public access to users in a Firebase project?

I have an open-source project that uses two separate Firebase projects for a test environment and the production one. Ultimately, I want to have other developers be able to pull down the project and actually be able to run it WITHOUT me needing to…
pjbrown11
  • 1
  • 1
0
votes
1 answer

Edit Google Cloud Image Script

I am creating an instance in GCloud console: New VM instance/Change the Boot Disk to "Debian GNU/Linux 9 Stretch + TF nightly-2-x" (or any GPU/deep learning boot disks)/add GPU This image has multiple benefits, pre-install cuda and ... One benefit…
Omid
  • 1,959
  • 25
  • 42
0
votes
1 answer

Google Cloud Console "You do not have sufficient permissions to view this page"

I am trying to create a new VM by clicking the link on this page. Whenever I click through, I get the error "You do not have sufficient permissions to view this page" I have tried the suggestions here, here, and here, and so far none have resolved…
wil3
  • 2,877
  • 2
  • 18
  • 22
0
votes
1 answer

GCP service accounts use case

I am just starting to use GCP and I have some questions about the service accounts. Say there is a team of like 4 remotely located developers and we all want to use the python API to access GCP to launch instances and run stuff on them. My question…
Luca
  • 10,458
  • 24
  • 107
  • 234
0
votes
1 answer

Google Calendar API returning "Daily Limit"

I'm using the nodejs googleapis module to authenticate the google calendar API. I've managed to get an access token. My code is below: var tok = { access_token: 'ya29.XXXXX-XXXXXXX', refresh_token: '1/XXXXXXXXXXX', scope:…
Viper
  • 1,327
  • 2
  • 12
  • 33
0
votes
1 answer

Cannot create project in google cloud platform

I saw a similar question in Can't create project in Google Cloud which posted in months ago, is this problem still not fixed? Empty location listing Update: Error message on gcloud projects create: $ gcloud projects create ione20190911 ERROR:…
PJS
  • 141
  • 3
  • 13
0
votes
0 answers

Firebase node.js cannot read cloud API private key file

I am using Firebase as my server. I need to use a Google Cloud API so I have the following in my functions/src/index.ts file: const { google } = require('googleapis') const key = require('./auth.json') const scopes =…
salyela
  • 1,325
  • 3
  • 14
  • 26