文档更新

This commit is contained in:
2026-04-30 10:54:29 +08:00
parent 248ed55f4e
commit 9674e0d0d9
4 changed files with 100 additions and 1901 deletions

View File

@@ -8356,6 +8356,12 @@ components:
description: 总数
type: integer
type: object
DtoWechatAppIDResponse:
properties:
app_id:
description: 当前生效的公众号 AppID
type: string
type: object
DtoWechatConfigListResponse:
properties:
items:
@@ -25442,6 +25448,51 @@ paths:
summary: 钱包流水列表
tags:
- 个人客户 - 钱包
/api/c/v1/wechat/appid:
get:
description: 用于 C 端免登录场景获取当前生效微信配置中的公众号 AppID响应仅返回 app_id 字段
responses:
"200":
content:
application/json:
schema:
properties:
code:
description: 响应码
example: 0
type: integer
data:
$ref: '#/components/schemas/DtoWechatAppIDResponse'
msg:
description: 响应消息
example: success
type: string
timestamp:
description: 时间戳
format: date-time
type: string
required:
- code
- msg
- data
- timestamp
type: object
description: 成功
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
description: 请求参数错误
"500":
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
description: 服务器内部错误
summary: 获取当前生效的公众号 AppID
tags:
- 个人客户 - 微信
/api/c/v1/wechat/jssdk-config:
get:
description: 前端调用 wx.config() 初始化微信 JS-SDK 时所需的签名参数,需传入当前页面完整 URL