From 7a63f1370f7d955d21b473d9bf7d5fa5f8f5faae Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 13 Feb 2021 03:27:59 +0900 Subject: [PATCH] guzzle --- app/Library/Esi/Esi.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Library/Esi/Esi.php b/app/Library/Esi/Esi.php index 4d4c4d0dc..352a76384 100644 --- a/app/Library/Esi/Esi.php +++ b/app/Library/Esi/Esi.php @@ -107,6 +107,8 @@ class Esi { $scopesArr = EsiScope::where([ 'character_id' => $token->character_id, ])->get()->toArray(); + + dd($scopesArr); //Create string separated by %20 = space from the array of scopes $scopes = implode(" ", $scopesArr); $scopes = str_replace(" ", "%20", $scopes);