18ab7eab92
按 docs/api 一接口一文件约定新增:
- 钱包(11): account / coin-transactions / cash-transactions / exchange-info / exchange / bind-wechat / unbind-wechat / withdraw-info / withdraw / withdraw/status / withdraw-orders
- 签到(2): status / 执行签到
- 任务(2): list / {task_key}/claim
- 省钱(3): summary / battle / records
- 看广告发奖(3): pangle-callback(S2S验签) / reward-status / test-grant(仅联调)
- README 索引补 12–32 行 + 新增「游标分页约定」+ 修正鉴权说明 + 注明金额以分为单位
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
27 lines
967 B
Markdown
27 lines
967 B
Markdown
# POST /api/v1/wallet/bind-wechat — 微信授权 code 换 openid 并绑定
|
||
|
||
> 所属:Wallet 组(前缀 `/api/v1/wallet`) | 鉴权:Bearer | 限流:同 IP ≤10 次/分 | [← 返回 API 索引](./README.md)
|
||
|
||
## 入参
|
||
|
||
| 字段 | 类型 | 必填 | 说明 |
|
||
|---|---|---|---|
|
||
| `code` | string | ✅ | 微信授权返回的 code(客户端 OAuth 拿到) |
|
||
|
||
## 出参
|
||
响应 `200`:`BindWechatResultOut`
|
||
|
||
| 字段 | 类型 | 说明 |
|
||
|---|---|---|
|
||
| `bound` | bool | 固定 `true` |
|
||
| `wechat_nickname` | string \| null | 微信昵称 |
|
||
| `wechat_avatar_url` | string \| null | 微信头像 URL |
|
||
|
||
## 错误码
|
||
- `400` code 无效 / 换 openid 失败
|
||
- `409` 该微信已绑定其他账号
|
||
- `503` 微信支付未配置(`wxpay_configured=false`)
|
||
|
||
## 说明
|
||
后端用 `code` 调微信 `jscode2session`(或 OAuth)换 `openid` 并写入 user。提现前置:必须先绑定。`openid` 全局唯一(DB 唯一约束),一个微信只能绑一个账号。
|