Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Google Photos integration."""
2 
3 DOMAIN = "google_photos"
4 
5 OAUTH2_AUTHORIZE = "https://accounts.google.com/o/oauth2/v2/auth"
6 OAUTH2_TOKEN = "https://oauth2.googleapis.com/token"
7 
8 UPLOAD_SCOPE = "https://www.googleapis.com/auth/photoslibrary.appendonly"
9 READ_SCOPE = "https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata"
10 OAUTH2_SCOPES = [
11  READ_SCOPE,
12  UPLOAD_SCOPE,
13  "https://www.googleapis.com/auth/userinfo.profile",
14 ]