Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/googleworkspace/browser-samples
Web samples for Google Workspace APIs
https://github.com/googleworkspace/browser-samples
google-workspace gsuite javascript samples
Last synced: 8 days ago
JSON representation
Web samples for Google Workspace APIs
- Host: GitHub
- URL: https://github.com/googleworkspace/browser-samples
- Owner: googleworkspace
- License: apache-2.0
- Created: 2018-03-13T15:31:30.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-01T18:20:17.000Z (4 months ago)
- Last Synced: 2024-07-09T01:21:28.940Z (4 months ago)
- Topics: google-workspace, gsuite, javascript, samples
- Language: HTML
- Homepage:
- Size: 380 KB
- Stars: 323
- Watchers: 20
- Forks: 559
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# browser-samples
Browser samples for [Google Workspace APIs](https://developers.google.com/workspace/) docs.
## APIs
### [Admin SDK](https://developers.google.com/admin-sdk/)
### [Apps Script API](https://developers.google.com/apps-script/api)
- [Quickstart](apps-script/quickstart)
### [Calendar](https://developers.google.com/calendar)
- [Quickstart](calendar/quickstart)
### [Classroom](https://developers.google.com/classroom)
- [Quickstart](classroom/quickstart)
### [Drive](https://developers.google.com/drive/v3)
- [Quickstart](drive/quickstart)
### [Docs](https://developers.google.com/docs)
- [Quickstart](docs/quickstart)
### [Gmail](https://developers.google.com/gmail/api/)
- [Quickstart](gmail/quickstart)
### [People](https://developers.google.com/people/)
- [Quickstart](people/quickstart)
### [Sheets](https://developers.google.com/sheets/api/)
- [Quickstart](sheets/quickstart)
- [Snippets](sheets/snippets)### [Slides](https://developers.google.com/slides/)
- [Quickstart](slides/quickstart)
- [Snippets](slides/snippets)## Setup
1. Clone this repository.
1. Follow the README instructions in the API folder to run and test samples.## Troubleshooting
Here are some tips for troubleshooting errors when running these samples:
- Be sure to create a local HTTP server to server the HTML page in the quickstart example. Otherwise the `gapi` client may encounter errors.
- Check your browser console for errors. In Chrome, this is under **View > Developer > JavaScript Console**Below are some possible errors you may encounter:
### Error: origin_mismatch
This error will occur during the authorization flow if the host and port used to serve the web page doesn't match an allowed JavaScript origin on your Google Developers Console project. Make sure to correctly specify **Authorized JavaScript origins** in the quickstart steps.
### idpiframe_initialization_failed: Failed to read the 'localStorage' property from 'Window'
The Google Sign-in library requires that third-party cookies and data storage is enabled in the web browser. For users that run into this error, prompt them to enable the feature or add an exception for accounts.google.com.
### idpiframe_initialization_failed: Not a valid origin for the client
The Google Sign-in library requires that the domain registered in the Google Developers Console matches the domain being used to host the web page. Make sure to correctly specify **Authorized JavaScript origins** in the quickstart steps.
## Linting
This project uses [htmllint](https://github.com/htmllint/htmllint).
Install & run:
```sh
sudo npm install -g htmllint-cli
htmllint
```Configure [options](https://github.com/htmllint/htmllint/wiki/Options) in the `.htmllintrc`.
## Client Library
Google Workspace APIs use the [Google API JavaScript client library](https://github.com/google/google-api-javascript-client).
## Contributing
Contributions welcome! See the [Contributing Guide](CONTRIBUTING.md).