A fully generated, opinionated API client library for Google Calendar.


Manipulates events and other calendar data.

API Terms of Service

name url Google https://google.com

name url Creative Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/

This client is generated from the Google Calendar OpenAPI specs based on API spec version v3 . This way it will remain up to date as features are added. The documentation for the crate is generated along with the code to make this library easy to use.

To install the library, add the following to your Cargo.toml file.

[dependencies] google-calendar = "0.4.1"

Typical use will require intializing a Client . This requires a user agent string and set of credentials.

use google_calendar::Client; let google calendar = Client::new( String::from( "client-id" ), String::from( "client-secret" ), String::from( "redirect-uri" ), String::from( "token" ), String::from( "refresh-token" ) );

Alternatively, the library can search for most of the variables required for the client in the environment:

GOOGLE CALENDAR_CLIENT_ID

GOOGLE CALENDAR_CLIENT_SECRET

GOOGLE CALENDAR_REDIRECT_URI

And then you can create a client from the environment.

use google_calendar::Client; let google calendar = Client::new_from_env( String::from( "token" ), String::from( "refresh-token" ) );

It is okay to pass empty values for token and refresh_token . In the initial state of the client, you will not know these values.

To start off a fresh client and get a token and refresh_token , use the following.

Comentarios

Entradas populares de este blog

Unnofficial Python wrapper for the unite-db.com REST API.

bybit-api