vault backup: 2026-04-16 16:54:17
This commit is contained in:
32
三方渠道对接/企微.md
Normal file
32
三方渠道对接/企微.md
Normal file
@@ -0,0 +1,32 @@
|
||||
URL:https://api-gateway-qa.meiqia.cn/sp/unauth/auth/wx-callback
|
||||
|
||||
|
||||
```sql
|
||||
CREATE TABLE `luoke_auth_info` (
|
||||
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`ent_id` BIGINT NOT NULL,
|
||||
`user_id` VARCHAR(64) NOT NULL,
|
||||
`device_id` VARCHAR(64) NOT NULL DEFAULT '',
|
||||
`corp_id` VARCHAR(64) NOT NULL DEFAULT '',
|
||||
`nickname` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`avatar` VARCHAR(512) NOT NULL DEFAULT '',
|
||||
`region` VARCHAR(64) NOT NULL DEFAULT '',
|
||||
`deleted_at` BIGINT NOT NULL DEFAULT 0,
|
||||
`created_at` BIGINT NOT NULL DEFAULT 0,
|
||||
`updated_at` BIGINT NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `uniq_luoke_auth_ent_user` (`ent_id`, `user_id`),
|
||||
KEY `idx_luoke_auth_user_id` (`user_id`)
|
||||
) ;
|
||||
|
||||
CREATE TABLE `luoke_fansinfo` (
|
||||
`id` BIGINT NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||||
`ent_id` BIGINT NOT NULL COMMENT '企业ID',
|
||||
`sub_source` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '子来源',
|
||||
`sender` BIGINT UNSIGNED NOT NULL COMMENT '发送者ID',
|
||||
`client_id` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '客户端ID',
|
||||
`created_at` BIGINT NOT NULL DEFAULT 0 COMMENT '创建时间',
|
||||
`updated_at` BIGINT NOT NULL DEFAULT 0 COMMENT '更新时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Luoke粉丝信息表';
|
||||
```
|
||||
@@ -1,7 +1,13 @@
|
||||
## 小洽客资管家
|
||||
公众号ID:gh_88538e9d02c4
|
||||
AppID:wx1487b5b0ee344799
|
||||
Token:
|
||||
AppSecret:a9dc91e0c9aded17dce0c97ae68ef733
|
||||
|
||||
消息推送:
|
||||
URL:https://api-gateway-qa.meiqia.cn/prisma/unauth/auth/wx-callback
|
||||
Token:00ec7abd88564743b9e61df1188972fb
|
||||
AESKey:HpwgJHm5HwDEGTolaR1tYEc4rqEFYJmTQ1lXD7nbQOd
|
||||
模式:明文模式
|
||||
|
||||
## 美洽
|
||||
|
||||
@@ -10,7 +16,24 @@ APPID:wx1ee1c39445037028
|
||||
AppSecret:cb8363d0eea2ec55baca2a98a989f8e7
|
||||
|
||||
消息推送:
|
||||
URL:https://api-gateway-qa-int.meiqia.com/prisma/wechat-auth/callback
|
||||
Token:82275e6a5e3343ebb6b1a863cf8e23be
|
||||
AESKey:zVFdstBmQF77TF8STjeav6fG0bnTJeBIM1tmVr2Kylm
|
||||
模式:安全模式
|
||||
URL:https://api-gateway-qa.meiqia.cn/prisma/unauth/auth/wx-callback
|
||||
Token:00ec7abd88564743b9e61df1188972fb
|
||||
AESKey:HpwgJHm5HwDEGTolaR1tYEc4rqEFYJmTQ1lXD7nbQOd
|
||||
模式:安全模式
|
||||
|
||||
## 事件接收
|
||||
https://developers.weixin.qq.com/doc/service/guide/product/message/Receiving_event_pushes.html#%E5%85%B3%E6%B3%A8-%E5%8F%96%E6%B6%88%E5%85%B3%E6%B3%A8%E4%BA%8B%E4%BB%B6
|
||||
|
||||
## 带参二维码
|
||||
https://developers.weixin.qq.com/doc/service/api/qrcode/qrcodes/api_createqrcode.html
|
||||
|
||||
|
||||
|
||||
alter table auth_info
|
||||
drop column deleted_at;
|
||||
|
||||
alter table auth_info
|
||||
add wx_open_id varchar(255) default '' not null comment '绑定的微信open_id';
|
||||
|
||||
alter table webhook
|
||||
add wx_push_config json null comment '微信推送配置' after workec_config;
|
||||
2
三方渠道对接/微信视频号反馈.md
Normal file
2
三方渠道对接/微信视频号反馈.md
Normal file
@@ -0,0 +1,2 @@
|
||||
1. 消息丢失和消息接收回执有关,视频号服务在高并发情况下推送数据没有拿到回执队列会有消息丢失
|
||||
2. IP纯净度问题,视频号服务商说的微信被封号是用了四叶天的住宅IP被封,目前我们使用的IDC IP,只有一家未实名的账号被封
|
||||
Reference in New Issue
Block a user