GoogleSheetFetcher

    Overview

    The Simple Google Sheets reader for Unity editor. You can do OAuth2 authorization and fetch the spreadsheet values by writing the following.

    // 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 for usage.

    License

    This library is under the MIT License.

    This software includes the work that is distributed in the Apache License 2.0.

    • Improve this Doc
    Back to top Google Sheet Fetcher Documentation