Laravel 8 请求令牌

2021-07-26 09:50 更新

创建密码授权的客户端后,就可以使用用户的电子邮件地址和密码向 /oauth/token 路由发出 POST 请求来获取访问令牌。而该路由已经由 Passport::routes 方法注册,因此不需要手动定义它。如果请求成功,会在服务端返回的 JSON 响应中收到一个 access_tokenrefresh_token

$http = new GuzzleHttp\Client;

$response = $http->post('http://your-app.com/oauth/token', [

    'form_params' => [

        'grant_type' => 'password',

        'client_id' => 'client-id',

        'client_secret' => 'client-secret',

        'username' => 'taylor@laravel.com',

        'password' => 'my-password',

        'scope' => '',

    ],

]);

return json_decode((string) $response->getBody(), true); 

技巧:默认情况下,访问令牌是长期有效的。你可以根据需要配置访问令牌的有效时间


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号