401 errors

This commit is contained in:
2018-11-14 00:41:33 -06:00
parent 038dd186ee
commit b73988aa22
2 changed files with 5 additions and 6 deletions

View File

@@ -109,7 +109,7 @@ class Fleet {
//Crate the ESI Class
$esi = new Eseye($authentication);
dd(config('esi.esi'));
dd(config('esi'));
try {
//Setup the body of the esi message and perform the call
$esi->setBody(['character_id' => $charId,

View File

@@ -1,10 +1,9 @@
<?php
return [
'esi' => [
'client_id' => env('ESI_CLIENT_ID'),
'secret' => env('ESI_SECRET_KEY'),
'useragent' => env('ESI_USERAGENT'),
'callback' => env('ESI_CALLBACK_URI'),
'client_id' => env('ESI_CLIENT_ID'),
'secret' => env('ESI_SECRET_KEY'),
'useragent' => env('ESI_USERAGENT'),
'callback' => env('ESI_CALLBACK_URI'),
]
];
?>