YohoCoinLogController.getYohoCoinNum.md 1.42 KB

获取用户有货币数量

入口:YohoCoinLogController.getYohoCoinNum()

method=app.yohocoin.total

公共请求参数

| 参数名称 | 参数类型| 长度 |可否为空 |示例 |默认值 | 备注 | | ---------|:--------:| --------:|-----:|------:|-----:|------:| |client_secret |string | 50 |否 |5ac68f20cb18efe154be | |进入接口提供的参数加密信息| |app_version |float | 10 |否 |1 | |APP版本| |os_version |string | 20 |否 |Android4.4 | |系统版本+机器型号| |client_type |string | 20 |否 |iphone/android/ipad | |手机型号(不区分大小写)| |screen_size |string | 20 |否 |800*900 | |(手机尺寸)|

请求参数:

参数名称 参数类型 可否为空 示例 默认值 备注
uid int 121 0 用户id

请求示例 注意,通用的头部没有列出。

http://localhost:8080/gateway?method=app.yohocoin.total&uid=1001&debug=XYZ

响应(data里"code"返回的是string类型,"total"返回的是Integer类型)

code为200即为成功,否则是失败。 响应JSON格式如下所示:

 {
 "alg": "SALT_MD5",
 "code": 200,
 "data": {
 "code": "20111130-152530",
 "total": 5400
 },
 "md5": "29842810d964c7e48914028e3a19e384",
 "message": "yoho coin total"
 }