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?
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.