mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-29 14:00:09 +08:00
53 lines
1.8 KiB
Markdown
53 lines
1.8 KiB
Markdown
# 大会员操作
|
||
|
||
- [兑换卡券](#兑换卡券)
|
||
|
||
---
|
||
|
||
## 兑换卡券
|
||
|
||
> https://api.bilibili.com/x/vip/privilege/receive
|
||
|
||
*请求方式:POST*
|
||
|
||
认证方式:Cookie (SESSDATA)
|
||
|
||
**正文参数 (application/x-www-form-urlencoded):**
|
||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|
||
| ------ | ---- | ----------------------- | --------------- | ------------------------------------------------------------ |
|
||
| type | num | 兑换类型 | 必要 | 1:B币券<br />2:会员购优惠券<br />3:漫画福利券<br />4:会员购包邮券<br/>5:漫画商城优惠券 |
|
||
| csrf | str | CSRF Token (位于cookie) | Cookie 方式必要 | |
|
||
|
||
**json回复:**
|
||
|
||
根对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
|---------|-----|------|---------------------------------------------------------------------------------------------------|
|
||
| code | num | 返回值 | -101:账号未登录<br />-111:csrf 校验失败<br />-400:请求错误<br />69800:网络繁忙 请稍后再试<br />69801:你已领取过该权益<br />0:成功 |
|
||
| message | str | 错误信息 | |
|
||
| ttl | num | 1 | |
|
||
|
||
**示例:**
|
||
|
||
```shell
|
||
curl 'https://api.bilibili.com/x/vip/privilege/receive' \
|
||
-b 'SESSDATA=xxx' \
|
||
--data-urlencode 'type=1' \
|
||
--data-urlencode 'csrf=xxx'
|
||
```
|
||
|
||
<details>
|
||
<summary>查看响应示例:</summary>
|
||
|
||
```json
|
||
{
|
||
"code": 0,
|
||
"message": "0",
|
||
"ttl": 1
|
||
}
|
||
```
|
||
|
||
</details>
|