update new api

This commit is contained in:
2020-11-02 08:14:51 +08:00
parent 8c3c022f0c
commit 5c11fc0552
2 changed files with 11 additions and 7 deletions

View File

@@ -10,8 +10,8 @@ class APIgoatFetchAPI
{
private $username = 'wp-behavior@apigoat.com';
private $password = '0sKtegdSSk';
private $baseURI = 'https://goat.local/p/goatcheese/api/v1/';
private $password = 'iDhj3wsyYs7WrrS';
private $baseURI = 'https://x.apigoat.com/api/v1/';
private $jwt_pubkey = '9sKjdjuue8sSjwh6';
private $jwt_alg = ['HS256'];
private $client;
@@ -21,7 +21,7 @@ class APIgoatFetchAPI
{
$this->client = new APIClient($this->baseURI);
$this->clientOptions = [
'verify' => false,
'verify' => true,
'content-Type' => 'application/json',
'accept' => 'application/json',
'debug' => false
@@ -61,7 +61,6 @@ class APIgoatFetchAPI
$response = $this->client->get('Behavior', $clientOptions);
$body = json_decode($response->getBody()->getContents(), true);
if ($response->getStatusCode() == 200) {
return $body;
@@ -93,6 +92,8 @@ class APIgoatFetchAPI
// authenticate on API to get token
$response = $this->client->post('Authy/auth', $options);
$loginResponseDecoded = json_decode($response->getBody()->getContents(), true);
/*print_r($loginResponseDecoded);
die();*/
$this->credentials = new AccessTokenCredentials($loginResponseDecoded['token']);
}