简体   繁体   中英

How to use Basic api token and JWT token both are working in same api in php Laravel?

Currently my apis are secured using basic authentication token. i would like to use jwt token authentication into my code. But i would like my apis to be secured by both mechanism together. what i do for this?

You can use both api and web middleware together

Route::middleware("auth:web,api")->group(function () {
///     your apis here
})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM