We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357cc90 commit ee4e1ffCopy full SHA for ee4e1ff
2 files changed
src/Interact/Config.php
@@ -3,7 +3,7 @@
3
4
class Config {
5
const SERVER_HOST = "api.interact.today";
6
- const SERVER_PORT = "443";
+ const SERVER_PORT = "80";
7
const COOKIE_DEVICE_CODE = "interact-device-code";
8
const COOKIE_USER_CODE = "interact-user-code";
9
}
src/Interact/CurlConfig.php
@@ -10,7 +10,7 @@ class CurlConfig
10
{
11
public static function doCurl($apiKey, $userIdentity)
12
13
- $url = "https://" . Config::SERVER_HOST . ":" . Config::SERVER_PORT;
+ $url = "http://" . Config::SERVER_HOST . ":" . Config::SERVER_PORT;
14
$client = new Client([
15
'base_uri' => $url,
16
'timeout' => 2.0
0 commit comments