微信授权获取code
Posted 小白历险记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信授权获取code相关的知识,希望对你有一定的参考价值。
微信授权获取code
1 入口文件
(其中,jumpUrl为获取code后返回处理的页面)
<script> import { getOpenID } from "../../utils/access.js"; export default{ data(){ return {}, }, methods:{ ... let jumpUrl = window.location.href.split("#")[0] + "#" + "/SaveUserInfo/saveOpenID?qrCode=" + qrCode; getOpenID(jumpUrl);
... } } </script>
2 access.js
... let params = "appid=" + appID + "&redirect_uri=" + encodeURIComponent(pageUrl) + "&response_type=code&scope=" + scope + "&state=111#wechat_redirect"; const url = "https://open.weixin.qq.com/connect/oauth2/authorize?" + params; ...
以上是关于微信授权获取code的主要内容,如果未能解决你的问题,请参考以下文章