我使用门卫作为我的 iOS 应用程序的 API。我想消除对 client_secret 的需求,因此令牌的 post 参数如下所示。
grant_type=password&
username=USERNAME&
password=PASSWORD&
client_id=CLIENT_ID
帮助将不胜感激!
谢谢,
路德维格
我使用门卫作为我的 iOS 应用程序的 API。我想消除对 client_secret 的需求,因此令牌的 post 参数如下所示。
grant_type=password&
username=USERNAME&
password=PASSWORD&
client_id=CLIENT_ID
帮助将不胜感激!
谢谢,
路德维格
你需要设置一个隐式授权
https://github.com/applicake/doorkeeper/wiki/Supported-Features
您需要将implicit_grant 传递给门卫。