如何在Apigility中自定义接收代码和授权页面

时间:2015-05-08 06:40:06

标签: api rest zend-framework zend-framework2 apigility

1 个答案:

答案 0 :(得分:0)

你应该在ZF-OAuth documentation中做一些阅读。 要请求令牌,您需要向POST端点发送包含用户凭据和客户端ID的oauth请求:

例如,对POST的基本网址发送/oauth次请求,其中包含以下json数据:

{
    "grant_type": "password",
    "password": "1234abcd",
    "username": "john.doe@example.com",
    "client_id": "MyClient"
}