我要求此网址
并显示此页面
该链接中的图片:https://www.apigility.org/apigility-documentation/img/auth-oauth2-authorize.png
但我只希望返回json值与令牌
答案 0 :(得分:0)
你应该在ZF-OAuth documentation中做一些阅读。
要请求令牌,您需要向POST
端点发送包含用户凭据和客户端ID的oauth
请求:
例如,对POST
的基本网址发送/oauth
次请求,其中包含以下json
数据:
{
"grant_type": "password",
"password": "1234abcd",
"username": "john.doe@example.com",
"client_id": "MyClient"
}