1

我使用门卫作为我的 iOS 应用程序的 API。我想消除对 client_secret 的需求,因此令牌的 post 参数如下所示。

grant_type=password&
username=USERNAME&
password=PASSWORD&
client_id=CLIENT_ID

帮助将不胜感激!

谢谢,

路德维格

4

1 回答 1

1

你需要设置一个隐式授权

https://github.com/applicake/doorkeeper/wiki/Supported-Features

您需要将implicit_grant 传递给门卫。

于 2013-10-24T17:10:03.450 回答