Compare commits
3 Commits
11c23ab683
...
93736b5495
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
93736b5495 | ||
|
|
0c7afd69d0 | ||
|
|
7700e4f09d |
36
.obsidian/workspace.json
vendored
36
.obsidian/workspace.json
vendored
@@ -4,21 +4,21 @@
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "e0dcf46046651d22",
|
||||
"id": "3b2b34a85c441329",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "5eeda99f64f8c37a",
|
||||
"id": "e29338cdcaee82a9",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "美洽AI/DevOps/基础镜像.md",
|
||||
"file": "三方渠道对接/微信视频号反馈.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "基础镜像"
|
||||
"title": "微信视频号反馈"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -178,14 +178,23 @@
|
||||
"obsidian-git:Open Git source control": false
|
||||
}
|
||||
},
|
||||
"active": "b191e8e6c0596055",
|
||||
"active": "e29338cdcaee82a9",
|
||||
"lastOpenFiles": [
|
||||
"公司/日报/2026年/3月/2026-03-02.md",
|
||||
"美洽AI/DevOps/基础镜像.md",
|
||||
"美洽AI/DevOps",
|
||||
"公司/日报/2026年/3月",
|
||||
"三方渠道对接/企微.md",
|
||||
"三方渠道对接/微信视频号反馈.md",
|
||||
"三方渠道对接/微信公众号.md",
|
||||
"Untitled.md",
|
||||
"公司/日报/2026年/3月/2026-03-27.md",
|
||||
"三方渠道对接",
|
||||
"公司/Untitled",
|
||||
"公司/日报/2026年/3月/2026-03-26.md",
|
||||
"公司/日报/2026年/3月/2026-03-25.md",
|
||||
"公司/日报/2026年/3月/2026-03-24.md",
|
||||
"公司/日报/2026年/3月/2026-03-23.md",
|
||||
"美洽AI/DevOps/基础镜像.md",
|
||||
"公司/日报/2026年/3月/2026-03-02.md",
|
||||
"美洽AI/DevOps",
|
||||
"公司/日报/2026年/3月",
|
||||
"公司/日报/2026年/3月/2026-03-20.md",
|
||||
"公司/日报/2026年/3月/2026-03-19.md",
|
||||
"公司/日报/2026年/3月/2026-03-18.md",
|
||||
@@ -206,16 +215,7 @@
|
||||
"公司/日报/2025年",
|
||||
"公司/日报/2025年/12月",
|
||||
"公司/日报/2026年/3月/2026-03-05.md",
|
||||
"公司/日报/2026年/3月/2026-03-04.md",
|
||||
"公司/日报/2026年/3月/2026-03-03.md",
|
||||
"公司/日报/2026年/2月/2026-02-28.md",
|
||||
"公司/日报/2026年/2月/2026-02-27.md",
|
||||
"公司/日报/2026年/2月/2026-02-26.md",
|
||||
"公司/日报/2026年/2月/2026-02-12.md",
|
||||
"公司/日报/2026年/2月/2026-02-11.md",
|
||||
"Untitled.base",
|
||||
"公司/绩效",
|
||||
"公司/职级",
|
||||
"src/定制模板(千人千面).png",
|
||||
"src/Pasted image 20250514170546.png",
|
||||
"src/试用期考核.jpeg"
|
||||
|
||||
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粉丝信息表';
|
||||
```
|
||||
39
三方渠道对接/微信公众号.md
Normal file
39
三方渠道对接/微信公众号.md
Normal file
@@ -0,0 +1,39 @@
|
||||
## 小洽客资管家
|
||||
公众号ID:gh_88538e9d02c4
|
||||
AppID:wx1487b5b0ee344799
|
||||
AppSecret:a9dc91e0c9aded17dce0c97ae68ef733
|
||||
|
||||
消息推送:
|
||||
URL:https://api-gateway-qa.meiqia.cn/prisma/unauth/auth/wx-callback
|
||||
Token:00ec7abd88564743b9e61df1188972fb
|
||||
AESKey:HpwgJHm5HwDEGTolaR1tYEc4rqEFYJmTQ1lXD7nbQOd
|
||||
模式:明文模式
|
||||
|
||||
## 美洽
|
||||
|
||||
公众号ID:gh_8bcddfff7a46
|
||||
APPID:wx1ee1c39445037028
|
||||
AppSecret:cb8363d0eea2ec55baca2a98a989f8e7
|
||||
|
||||
消息推送:
|
||||
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,只有一家未实名的账号被封
|
||||
5
公司/日报/2026年/3月/2026-03-25.md
Normal file
5
公司/日报/2026年/3月/2026-03-25.md
Normal file
@@ -0,0 +1,5 @@
|
||||
已完成:
|
||||
1. 客户支持:10001815、10000740、10001674、10001956
|
||||
2. 修复沉默追问的bug
|
||||
进行中:
|
||||
3. 视频号互动消息对接
|
||||
4
公司/日报/2026年/3月/2026-03-26.md
Normal file
4
公司/日报/2026年/3月/2026-03-26.md
Normal file
@@ -0,0 +1,4 @@
|
||||
进行中:
|
||||
1. 视频号场景对接
|
||||
已完成:
|
||||
2. 数据归档
|
||||
4
公司/日报/2026年/3月/2026-03-27.md
Normal file
4
公司/日报/2026年/3月/2026-03-27.md
Normal file
@@ -0,0 +1,4 @@
|
||||
已完成:
|
||||
1. 视频号场景接口
|
||||
进行中:
|
||||
2. 公众号消息推送
|
||||
Reference in New Issue
Block a user