POST api/v1/Common/GameScorePost
[NeedJsonSign]活动游戏分数提交
请求信息(Request)
URI 参数
None.
Body 参数
ActivityGameScoreDTO| 名称 | 描述 | 类型 | 备注 |
|---|---|---|---|
| Appid | string |
None. |
|
| GameName | string |
None. |
|
| UserId | integer |
None. |
|
| OpenId | string |
None. |
|
| Score | integer |
None. |
请求格式
application/json, text/json
Sample:
{
"Appid": "sample string 1",
"GameName": "sample string 2",
"UserId": 3,
"OpenId": "sample string 4",
"Score": 5
}
application/xml, text/xml
Sample:
<ActivityGameScoreDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs"> <Appid>sample string 1</Appid> <GameName>sample string 2</GameName> <OpenId>sample string 4</OpenId> <Score>5</Score> <UserId>3</UserId> </ActivityGameScoreDTO>
application/x-www-form-urlencoded
Sample:
响应信息(Response)
资源描述
RequestResultOfInt32| 名称 | 描述 | 类型 | 备注 |
|---|---|---|---|
| Data | integer |
None. |
|
| Status |
状态(0:成功,1:失败) |
integer |
None. |
| Message |
导致失败的相关消息 |
string |
None. |
| Total |
集合总数,用于分页时使用 |
integer |
None. |
响应格式
application/json, text/json
Sample:
{
"Data": 1,
"Status": 2,
"Message": "sample string 3",
"Total": 4
}
application/xml, text/xml
Sample:
<RequestResultOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application"> <Message>sample string 3</Message> <Status>2</Status> <Total>4</Total> <Data>1</Data> </RequestResultOfint>