mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
11 lines
313 B
Python
11 lines
313 B
Python
"""Constants for the myUplink integration."""
|
|
|
|
DOMAIN = "myuplink"
|
|
|
|
API_ENDPOINT = "https://api.myuplink.com"
|
|
OAUTH2_AUTHORIZE = "https://api.myuplink.com/oauth/authorize"
|
|
OAUTH2_TOKEN = "https://api.myuplink.com/oauth/token"
|
|
OAUTH2_SCOPES = ["WRITESYSTEM", "READSYSTEM", "offline_access"]
|
|
|
|
F_SERIES = "f-series"
|