Skip to content

Commit

Permalink
[innogysmarthome] New innogy auth endpoint as livisi will shutdown th…
Browse files Browse the repository at this point in the history
…e old endpoint (#7264)

Changes auth endpoint as livisi will shutdown the old endpoint on 31.06.2020

Signed-off-by: Oliver Kuhl <[email protected]>
  • Loading branch information
ollie-dev authored Mar 31, 2020
1 parent fb8899e commit 44fe976
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ public final class Constants {

// API URLs
public static final String API_HOST = "api.services-smarthome.de";
public static final String AUTH_HOST = "auth.services-smarthome.de";
public static final String API_VERSION = "1.1";
public static final String API_URL_BASE = "https://" + API_HOST + "/API/" + API_VERSION;
public static final String API_URL_TOKEN = "https://" + API_HOST + "/AUTH/token";
public static final String API_URL_TOKEN = "https://" + AUTH_HOST + "/AUTH/token";

public static final String API_URL_CHECK_CONNECTION = API_URL_BASE + "/desc/device/SHC.RWE/1.0/event/StateChanged";
public static final String API_URL_INITIALIZE = API_URL_BASE + "/initialize";
Expand Down

0 comments on commit 44fe976

Please sign in to comment.