1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-03-01 00:35:26 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
曹晶 9b453210f2 Merge 836c5b6607 into da5067bcb2 2023-10-09 15:20:45 +08:00
曹晶 da5067bcb2 fix(work): fix json Unmarshal Error in GetExternalUserDetail api (#732)
fix json Unmarshal Error, err=json: cannot unmarshal number into Go struct field
WechatChannel.follow_user.wechat_channels.source of type string
2023-10-09 02:02:37 -05:00
+1 -1
View File
@@ -104,7 +104,7 @@ type Tag struct {
// WechatChannel 视频号添加的场景 // WechatChannel 视频号添加的场景
type WechatChannel struct { type WechatChannel struct {
NickName string `json:"nickname"` NickName string `json:"nickname"`
Source string `json:"source"` Source int `json:"source"`
} }
// GetExternalUserDetail 获取外部联系人详情 // GetExternalUserDetail 获取外部联系人详情