https://github.com/haruma-k/googlesheetfetcher
The simple interface Google Sheets reader for Unity editor.
https://github.com/haruma-k/googlesheetfetcher
google googlesheets oauth2 spreadsheet unity unityeditor unitypackage
Last synced: 3 months ago
JSON representation
The simple interface Google Sheets reader for Unity editor.
- Host: GitHub
- URL: https://github.com/haruma-k/googlesheetfetcher
- Owner: Haruma-K
- Created: 2020-05-03T03:21:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T20:57:00.000Z (9 months ago)
- Last Synced: 2025-03-17T05:21:59.843Z (3 months ago)
- Topics: google, googlesheets, oauth2, spreadsheet, unity, unityeditor, unitypackage
- Language: C#
- Homepage: https://haruma-k.github.io/GoogleSheetFetcher/index.html
- Size: 1.63 MB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoogleSheetFetcher
## Overview
The Simple Google Sheets reader for Unity editor.
You can do OAuth2 authorization and fetch the spreadsheet values by writing the following.```cs
// Google OAuth2 authorization.
var fetcher = new Fetcher();
await fetcher.InitializeAsync(_clientId, _clientSecret, _applicationId).Task;// Get all the values in the sheet.
var values = await fetcher.FetchValuesAsync(_spreadsheetId, sheets[0]).Task;
```## Usage
Please refer to [the manual](https://haruma-k.github.io/GoogleSheetFetcher/manual/index.html) for usage.## License
This library is under [the MIT License](https://opensource.org/licenses/mit-license.php).This software includes the work that is distributed in [the Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).