This commit is contained in:
2021-02-13 03:27:18 +09:00
parent 2110cbff32
commit d54bb575ba
+2 -1
View File
@@ -108,7 +108,8 @@ class Esi {
'character_id' => $token->character_id,
])->get()->toArray();
//Create string separated by %20 = space from the array of scopes
$scopes = implode('%20', $scopesArr);
$scopes = implode(" ", $scopesArr);
$scopes = str_replace(" ", "%20", $scopes);
//Setup the new guzzle client
$client = new Client();