持续集成分支

This commit is contained in:
aixianling
2024-10-31 14:34:57 +08:00
parent 6a833be062
commit 8c56cf808b
2165 changed files with 4116 additions and 8716 deletions

View File

@@ -0,0 +1 @@
wgUJVXFQU2vrp0Lc

16
public/oauth.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>微信Oauth2.0</title>
</head>
<body>
<script>
if (/code=/.test(location.search)) {
parent.postMessage(location.href)
} else {
location.href = `https://open.weixin.qq.com/connect/oauth2/authorize${location.search}&redirect_uri=${location.origin + location.pathname}#wechat_redirect`
}
</script>
</body>
</html>