feat: 章节数据库化 + 支付配置更新
1. 章节内容迁移到MySQL数据库(67篇文章) 2. 章节API改为从数据库读取,不再依赖book文件夹 3. 新增章节管理API(增删改查) 4. 更新小程序支付AppSecret 5. 整理完整API配置清单
This commit is contained in:
@@ -11,12 +11,13 @@
|
||||
import { NextResponse } from 'next/server'
|
||||
import crypto from 'crypto'
|
||||
|
||||
// 微信支付配置
|
||||
// 微信支付配置 - 2026-01-25 更新
|
||||
// 小程序支付绑定状态: 审核中(申请单ID: 201554696918)
|
||||
const WECHAT_PAY_CONFIG = {
|
||||
appId: 'wxb8bbb2b10dec74aa', // 小程序AppID
|
||||
appSecret: '85d3fa31584d06acdb1de4a597d25b7b', // 小程序AppSecret
|
||||
appSecret: '3c1fb1f63e6e052222bbcead9d07fe0c', // 小程序AppSecret(已更新)
|
||||
mchId: '1318592501', // 商户号
|
||||
mchKey: 'wx3e31b068be59ddc131b068be59ddc2', // API密钥
|
||||
mchKey: 'wx3e31b068be59ddc131b068be59ddc2', // API密钥(v2)
|
||||
notifyUrl: 'https://soul.quwanzhi.com/api/miniprogram/pay/notify', // 支付回调地址
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user