Skip to content

Commit

Permalink
Update action.md 大会员每日经验 (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
catlair authored Nov 28, 2023
1 parent d7fbc16 commit b8a1241
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions docs/vip/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,60 @@ curl 'https://api.bilibili.com/x/vip/privilege/receive' \
```

</details>

## 大会员每日经验

> https://api.bilibili.com/x/vip/experience/add
*请求方式:POST*

认证方式:Cookie (SESSDATA)

**正文参数 (application/x-www-form-urlencoded):**

| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|------|-----|-----------------------|-------------|--------------------------------------------------------------------------------------|
| csrf | str | CSRF Token (位于cookie) | Cookie 方式必要 | |

**json回复:**

根对象:

| 字段 | 类型 | 内容 | 备注 |
|---------|-----|------|---------------------------------------------------------------------------------------------------|
| code | num | 返回值 | -101:账号未登录<br />-111:csrf 校验失败<br />69198:用户经验已经领取<br />6034007:请求频繁,请稍后再试<br />0:成功 |
| message | str | 错误信息 | ` |
| ttl | num | 1 | |
| data | obj | | 信息本体 |

**`data`对象:**

| 字段名 | 类型 | 内容 | 备注 |
| ------------------ | ------------------------------- | -------------------- | ---------------------------------------------- |
| type | num | 0 | |
| is_grant | bool | | 暂时发现 code 为 0 时为 `true` |

**示例:**

```shell
curl 'https://api.bilibili.com/x/vip/experience/add' \
-b 'SESSDATA=xxx' \
--data-urlencode 'csrf=xxx'
```

<details>
<summary>查看响应示例:</summary>

```json
{
"code": 69198,
"message": "用户经验已经领取",
"ttl": 1,
"data": {
"type": 0,
"is_grant": false
}
}
```

</details>

0 comments on commit b8a1241

Please sign in to comment.