PowerWechatTutorial icon indicating copy to clipboard operation
PowerWechatTutorial copied to clipboard

方便用户学习和调试PowerWechat接口功能

Results 3 PowerWechatTutorial issues
Sort by recently updated
recently updated
newest added

如下图的两个CallbackURL具体用途是什么?和”设置接收事件服务器“中的”URL“有什么区别?(我看资料说:企业微信验证和发消息都是同一URL,只不过方式分别是GET和POST) 能不能出个完整的demo,文档过于简单了,感谢! ![image](https://github.com/ArtisanCloud/PowerWechatTutorial/assets/59470742/c0a22fbf-03e6-4d2a-97aa-269d1c8d5355) ![image](https://github.com/ArtisanCloud/PowerWechatTutorial/assets/59470742/d0d2a6e3-53a7-4405-8d16-2111e76db27f)

![image](https://user-images.githubusercontent.com/39019652/223296517-02913305-7ce6-40b0-9e8e-a91577c52755.png)

如[网页授权](https://powerwechat.artisan-cloud.com/zh/official-account/oauth.html)中的流程,用户使用code换取access_token和refresh_token,再通过access_token调`OfficialAccountApp.OAuth.UserFromToken("[token]")`。 但是[providers/wechat.go](https://github.com/ArtisanCloud/PowerSocialite/blob/release/3.0.0/src/providers/wechat.go#L260)这里并没有声明相关的access_token,调用`OfficialAccountApp.OAuth.UserFromCode("[code]")`返回中获取不到access_token 是通过其他方式获取的access_token吗