This script (python 3) generates tokens that can be used when making requests to the Google Home Foyer API. There are 2 kinds of tokens used here:
- Master token - Is in the form
aas_et/***
and is long lived. Needs Google username and password. - Access token - Is in the form
ya29.***
and lasts for an hour. Needs Master token to generate.
If you do not want to store the Google account password in plaintext, get the master token once, and set it as an override value.
It's safer/easier to generate an app password and use it instead of the actual password. It still has the same access as the regular password, but still better than using the real password while scripting. (https://myaccount.google.com/apppasswords)
# Install python requirements
pip install gpsoauth
# Update the constants at the beginning of the file
# Get the tokens!
python3 get_tokens.py
installing
gpsoauth==1.0.2
seems to work ok. Newer versions return theNeedsBrowser
error.Update
It also only worked on docker images based on:
debian:bullseye
andalpine:3.16
. I didn't try below these versions but newer than those don't work. The openssl package version is1.1.1
ondebian:bullseye
andalpine:3.16
. Newer versions had version>3.0.0
like @artickl said.