Currently I want to use dingo/api to write interfaces in laravel5, but the authorization verification part of the business is with WeChat.
Because the online solutions are all Dingo/api JWT, so I want to know if JWT is necessary?
Can the WeChat authorization part I want to do replace the JWT part?
PHP中文网2017-05-31 10:33:44
JWT is not necessary.
JWT is an optional component in Dingo. Dingo supports 3 authentication methods, HTTP Basic
, JSON Web Tokens
, OAuth 2.0
.
I have never done WeChat development, so I don’t know if WeChat authorization can be integrated.