获取知识合伙人列表
好热闹
Method and URL Structure
Method |
Resource URL |
POST |
/forum/user_invitees/ |
Request Parameters
Name |
Description |
Required |
Default |
username |
用户名 |
YES |
|
password |
密码 |
YES |
|
Request
{
"username":"username",
"password":"password",
}
cURL Example
$ curl http://www.haorenao.cn/froum/user_invitees/ -d username=18012345678&password=123456
JSON Response
Name |
Description |
ret |
标识是否成功。ok, 成功; failed, 失败 |
reason |
失败原因 |
userinfos |
合伙人列表 |
UserInfo:
Name |
Description |
username |
用户名 |
nickname |
昵称 |
id |
UserInfo ID |
thumb |
头像 URL |
{
"ret":"ok",
"reason":"",
"userinfos": [
{
"username": "13241818989",
"nickname": u"昵称",
"id": 2639,
"thumb":"http://resource.haorenao.cn/static/tea/threadimages/c4e6a.jpg"
},...
]
}