Skip to content

Commit ee4e1ff

Browse files
committed
Changed from https to http
1 parent 357cc90 commit ee4e1ff

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Interact/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class Config {
55
const SERVER_HOST = "api.interact.today";
6-
const SERVER_PORT = "443";
6+
const SERVER_PORT = "80";
77
const COOKIE_DEVICE_CODE = "interact-device-code";
88
const COOKIE_USER_CODE = "interact-user-code";
99
}

src/Interact/CurlConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class CurlConfig
1010
{
1111
public static function doCurl($apiKey, $userIdentity)
1212
{
13-
$url = "https://" . Config::SERVER_HOST . ":" . Config::SERVER_PORT;
13+
$url = "http://" . Config::SERVER_HOST . ":" . Config::SERVER_PORT;
1414
$client = new Client([
1515
'base_uri' => $url,
1616
'timeout' => 2.0

0 commit comments

Comments
 (0)