获取Code
批准用户的客户端和请求,并获取code。(获取用户token前必
须)
实际URL:https://www.xxxx.com/oauth/authorize/login
请求参数(Query):
字段名 |
类型 |
说明 |
response_type |
String |
默认值:code |
client_id |
String |
应用AppId |
redirect_uri |
String |
应用回调地址 |
scope |
String |
默认值:* |
state |
String |
默认值:heimuri |
请求参数(Body):
字段名 |
类型 |
说明 |
username |
String |
当前应用下的操作员用户名 |
password |
String |
用户名所对应的密码 |
输出参数:
字段名 |
类型 |
说明 |
Code |
String |
三位数字 |
message |
String |
200: 请求成功 、400:处理请求数据出错、401:无权限、500:系统异常 |
输出数据说明:
{ "code": 200, "message": "OK", "data": { "client_id": "应用AppId", "client_secret": "应用AppSecret", "redirect_uri": "应用回调地址", "code": "def502006b459130f54c28a9b7e0af714c3a3131dbbe23a5d2d2edc9e9494eb60310a6f24552543b34c47a2a5debff757b6dfaeb257a83532802ef85c4421fb44c009f3be42915e1f1387f0afcd1b115119cd10127fcac0810f2a0ced9ae935515c987ceade3b76439ce3cca0f291268bc5f2421f0c2562e97b4b8d5d56e1b6983b5963ae75ae6a94a", "state": "heimuri" }, "timestamp": 1718239557 }