Google Workspace Development Tools Resources
Discussions to expand your knowledge on Google Workspace Development Tools
Resource pages are designed to give you a cross-section of information we have on specific categories. You'll find discussions from users like you.
Google Workspace Development Tools Discussions
0
Question on: Google Cloud Tools for IntelliJ
Does Google Cloud have an IDE?Does Google Cloud have an IDE?
Show More
Show Less
Answered: Hùng Trần on February 8, 2023
0
Question on: Google Cloud Tools for IntelliJ
How do I use Google application credentials in IntelliJ?How do I use Google application credentials in IntelliJ?
Show More
Show Less
Go to the config, add e-mail address of your service account to the “Service Account”
Test following the next steps:
1. Create a new Python Flask Cloud Run project using a starter template Cloud Code provides.
2. Edit the Cloud Run: Run Locally config's "Service Account" field to include the email address of my service account. Note that I gave this service account Owner permission for testing.
3. Add in a Cloud Translate snippet https://cloud.google.com/translate/docs/advanced/translating-text-v3#translating_input_strings
4. Run the Cloud Run: Run locally configuration.
At the time when the service is running, open the URL in the Event Log and the translate API was called successfully.
Alternatively, you could add your service account's key.json file to your project, create a new environment variable in your Dockerfile named GOOGLE_APPLICATION_CREDENTIALS, and set that variable equal to the path of your key.json file.
Show More
Show Less
0
Question on: Google Apps Script for G Suite
How do you automate G suite?How do you automate G suite?
Show More
Show Less
Using Google Apps Script, which is essentially javascript with some Apps Script libraries on top of it.
Show More
Show Less