|
"""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 = ["READSYSTEM", "offline_access"]
|