hotime/example/tpt/wx/code.html

33 lines
887 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>微信登录</title>
<script type="text/javascript" src="js/hotime.js"></script>
</head>
<body>
<script>
function run() {
var data={"code":H.getParam("code"),"org_id":H.getParam("org_id")}
if(data.code==null){
location.href='https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx2edb802f5c3ae1ae&redirect_uri='+location.href+'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect'
return
}
H.post("app/wechat/code", data, function (res) {
if (res.status != 0) {
alert(res.result.type)
return
}
H.upUrl("https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg5MDczNDcwMw==#wechat_redirect");
})
}
run()
</script>
</body>
</html>