Add reauth flow to Google Tasks (#109517)
* Add reauth flow to Google Tasks * Update homeassistant/components/google_tasks/config_flow.py Co-authored-by: Jan-Philipp Benecke <github@bnck.me> * Add tests * Reauth * Remove insta reauth * Fix --------- Co-authored-by: Jan-Philipp Benecke <github@bnck.me>
This commit is contained in:
parent
ff83d9acff
commit
c108c7df38
7 changed files with 204 additions and 24 deletions
|
@ -6,7 +6,10 @@ DOMAIN = "google_tasks"
|
|||
|
||||
OAUTH2_AUTHORIZE = "https://accounts.google.com/o/oauth2/v2/auth"
|
||||
OAUTH2_TOKEN = "https://oauth2.googleapis.com/token"
|
||||
OAUTH2_SCOPES = ["https://www.googleapis.com/auth/tasks"]
|
||||
OAUTH2_SCOPES = [
|
||||
"https://www.googleapis.com/auth/tasks",
|
||||
"https://www.googleapis.com/auth/userinfo.profile",
|
||||
]
|
||||
|
||||
|
||||
class TaskStatus(StrEnum):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue