401 errors

This commit is contained in:
2018-11-14 00:31:03 -06:00
parent c3c1783eb7
commit c6c1965c65
2 changed files with 11 additions and 1 deletions

View File

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

10
config/esi.php Normal file
View File

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