用于用户身份验证的个人访问令牌和 json 网络令牌有什么区别?

what is the difference between personal access token and json web token for user Authentication?

我知道我们可以使用 json 网络令牌在网络应用程序中进行用户身份验证。 应用程序客户端向应用程序服务器发送一对用户名和密码,Web 应用程序服务器 return 向应用程序客户端发送 JSON 网络令牌。

今天,我在 Laravel 5.4 文档中阅读了一些关于个人访问令牌的段落。但是,我不确定它们是否有意义。什么是个人访问令牌? Laravel中的个人访问令牌等同于JSON用于用户身份验证的网络令牌?

谁能帮帮我?

这是definition

Personal access token

Sometimes, your users may want to issue access tokens to themselves without going through the typical authorization code redirect flow. Allowing users to issue tokens to themselves via your application's UI can be useful for allowing users to experiment with your API or may serve as a simpler approach to issuing access tokens in general.

个人访问令牌只是一个 JWT(Json Web 令牌),用于使用您自己的前端进行用户身份验证,为您的用户提供一个仪表板来管理个人访问令牌,而不是使用 user/password表格.