Remove old authentication (#1635)

This commit is contained in:
Pascal Vizeli 2020-04-05 19:16:12 +02:00 committed by GitHub
parent cc56944d75
commit 2364e1e652
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,21 +123,11 @@ class APIProxy(CoreSysAttributes):
_LOGGER.error("Got unexpected response from HA WebSocket: %s", data) _LOGGER.error("Got unexpected response from HA WebSocket: %s", data)
raise APIError() raise APIError()
if self.sys_homeassistant.refresh_token: # Auth session
await self.sys_homeassistant.ensure_access_token() await self.sys_homeassistant.ensure_access_token()
await client.send_json( await client.send_json(
{ {"type": "auth", "access_token": self.sys_homeassistant.access_token}
"type": "auth", )
"access_token": self.sys_homeassistant.access_token,
}
)
else:
await client.send_json(
{
"type": "auth",
"api_password": self.sys_homeassistant.api_password,
}
)
data = await client.receive_json() data = await client.receive_json()