Skip to content

Commit

Permalink
New API Manager URL & Client ID for Atlantic (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
adetante authored Nov 27, 2022
1 parent 38a08db commit 5327271
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyoverkiz/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ async def cozytouch_login(self) -> str:

# Request JWT
async with self.session.get(
COZYTOUCH_ATLANTIC_API + "/gacoma/gacomawcfservice/accounts/jwt",
COZYTOUCH_ATLANTIC_API + "/magellan/accounts/jwt",
headers={"Authorization": f"Bearer {token['access_token']}"},
) as response:
jwt = await response.text()
Expand Down
4 changes: 2 additions & 2 deletions pyoverkiz/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from pyoverkiz.models import OverkizServer

COZYTOUCH_ATLANTIC_API = "https://api.groupe-atlantic.com"
COZYTOUCH_ATLANTIC_API = "https://apis.groupe-atlantic.com"
COZYTOUCH_CLIENT_ID = (
"czduc0RZZXdWbjVGbVV4UmlYN1pVSUM3ZFI4YTphSDEzOXZmbzA1ZGdqeDJkSFVSQkFTbmhCRW9h"
"Q3RfMUpWeVRtSUxYOEllZkE3YVVOQmpGblpVYToyRWNORHpfZHkzNDJVSnFvMlo3cFNKTnZVdjBh"
)

NEXITY_API = "https://api.egn.prd.aws-nexity.fr"
Expand Down

1 comment on commit 5327271

@ColinGski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, I have a home assistant installation with the overkiz integration to manage "Sauter" radiators from the atlantic group.
Since last home assistant update, it's no longer working and failing on authentication.
I wonder if this commit could be the error source as it is the most notable related change.

home-assistant/core#84061

Please sign in to comment.