POST api/member/avatar
Request Information
URI Parameters
None.
Body Parameters
AppMemberAvatarCredetialName | Description | Type | Additional information |
---|---|---|---|
appid |
应用的appid |
string |
None. |
token |
用户的Token |
string |
None. |
avatar |
头像文件的Base64字符串 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "appid": "sample string 1", "token": "sample string 2", "avatar": "sample string 3" }
application/xml, text/xml
Sample:
<AppMemberAvatarCredetial xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XCoin.Models"> <appid>sample string 1</appid> <avatar>sample string 3</avatar> <token>sample string 2</token> </AppMemberAvatarCredetial>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AjaxReturnName | Description | Type | Additional information |
---|---|---|---|
error | boolean |
None. |
|
message | string |
None. |
|
url | string |
None. |
|
data | Object |
None. |
|
exceptions | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "error": true, "message": "sample string 2", "url": "sample string 3", "data": {}, "exceptions": {} }
application/xml, text/xml
Sample:
<AjaxReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XCoin"> <additional /> <error>true</error> <exceptions /> <message>sample string 2</message> <url>sample string 3</url> </AjaxReturn>