LoginSignup
2
0

More than 5 years have passed since last update.

laravel passportでルーティングを制限したりいじったりする。

Posted at

laravelにおけるAPI認証で、passportを使うときのメモ。

Http/Providers/AuthServiceProviderに、Passport::routes();
を付け足すことで oauth/token などのルーティングが追加されるが、その際引数で$callback$optionsを渡すことができる。

これらは、vender/laravel/passport/Passport.phpのfunction routesを見ればわかる。

$callback で登録するrouteを指定、
$optionsでnamespaceやprefixを指定できる。

vender/laravel/passport/src/RouteRegister を見れば、$callbackで指定できるエンドポイントもわかる。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0