Skip to content

Commit

Permalink
Merge pull request #63 from maxbeckers/develop
Browse files Browse the repository at this point in the history
Fix bearer token for address check
  • Loading branch information
maxbeckers authored Dec 17, 2018
2 parents e67e2ce + e6ab585 commit a21663a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helper/DeviceAddressInformationHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private function apiCall(string $url, string $token): DeviceAddressInformation
{
$response = $this->client->request('GET', $url, [
'headers' => [
'Authorization' => 'Basic '.$token,
'Authorization' => 'Bearer '.$token,
'Accept' => 'application/json',
],
]);
Expand Down

0 comments on commit a21663a

Please sign in to comment.