For how to authenticate yourself please go watch this video.
You will need a token.json with this content in the root of your project:
{
"token": "generated_access_token",
"refresh_token": "generated_refresh_token",
"token_uri": "https://oauth2.googleapis.com/token",
"client_id": "your_client_id",
"client_secret": "your_client_secret",
"scopes": [
"https://www.googleapis.com/auth/drive"
]
}
I will be using Google’s Quickstart as a foundation for what I am doing.
Read More »