當談到訪問我登錄我有這樣的錯誤:登錄失敗在laravel 5(JTW)
{"error":"token_not_provided"}
我有我的.htaccess:
RewriteEngine On
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
我在我的路線。 PHP:
Route::post('/api/login', '[email protected]');
Route::get('/api/login', '[email protected]');
,我有我的AuthenticateController:
use JWTAuth;
use Tymon\JWTAuth\Exceptions\JWTException;
class AuthenticateController extends Controller
{
public function authenticate(Request $request)
{
// grab credentials from the request
$credentials = $request->only('email', 'password');
try {
// attempt to verify the credentials and create a token for the user
if (! $token = JWTAuth::attempt($credentials)) {
return response()->json(['error' => 'invalid_credentials'], 401);
}
} catch (JWTException $e) {
// something went wrong whilst attempting to encode the token
return response()->json(['error' => 'could_not_create_token'], 500);
}
// all good so return the token
return response()->json(compact('token'));
}
你能幫我嗎?非常感謝你的問候
你可以看到你的瀏覽器發送頭,並有類似:'授權:Bearer' +長鍵? –
這是否幫助http://stackoverflow.com/questions/33101810/getting-token-not-provided-when-using-authorization-header-with-jwt-laravel – haakym