Laravel 8 GET /oauth/tokens
这个路由会返回认证用户创建的所有授权访问令牌,这在列举该用户的所有令牌以便撤销时很有用:
axios.get('/oauth/tokens')
.then(response => {
console.log(response.data);
});
这个路由会返回认证用户创建的所有授权访问令牌,这在列举该用户的所有令牌以便撤销时很有用:
axios.get('/oauth/tokens')
.then(response => {
console.log(response.data);
});