21 lines
884 B
Python
21 lines
884 B
Python
"""application_credentials platform for Google Sheets."""
|
|
from homeassistant.components.application_credentials import AuthorizationServer
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
async def async_get_authorization_server(hass: HomeAssistant) -> AuthorizationServer:
|
|
"""Return authorization server."""
|
|
return AuthorizationServer(
|
|
"https://accounts.google.com/o/oauth2/v2/auth",
|
|
"https://oauth2.googleapis.com/token",
|
|
)
|
|
|
|
|
|
async def async_get_description_placeholders(hass: HomeAssistant) -> dict[str, str]:
|
|
"""Return description placeholders for the credentials dialog."""
|
|
return {
|
|
"oauth_consent_url": "https://console.cloud.google.com/apis/credentials/consent",
|
|
"more_info_url": "https://www.home-assistant.io/integrations/google_sheets/",
|
|
"oauth_creds_url": "https://console.cloud.google.com/apis/credentials",
|
|
}
|