我不明白我该怎么做请帮我找到解决方案
$response = $client->request('POST', '/api/profile_update', [
'headers' => [
'Authorization' => 'Bearer '.$token,
'Accept' => 'application/json',
],
]);
return $response;
我在api.php
文件中使用了类似的东西
现在我可以在 controller
文件中做什么。
答案 0 :(得分:0)
$tokenResult = $user->createToken('Personal token');
$token = $tokenResult->token;
$token->save();
return response()->json([
'success' => true,
'access_token' => $tokenResult->accessToken,
'token_type' => 'Bearer',
'expires_at' => Carbon::parse(
$tokenResult->token->expires_at
)->toDateTimeString()
]);
答案 1 :(得分:-1)
您将用户令牌保存在数据库中的用户表中,并使用请求中的给定令牌进行检查
如果它们相同,您将获得用户信息