Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello_uni-id-pages
提交
5e60e9dd
H
hello_uni-id-pages
项目概览
DCloud
/
hello_uni-id-pages
通知
1060
Star
33
Fork
43
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
2
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello_uni-id-pages
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5e60e9dd
编写于
7月 21, 2022
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: third party openid error
This reverts commit
f4e7ec75
.
上级
f4e7ec75
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
10 addition
and
0 deletion
+10
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
...d-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
+3
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
...ges/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
+3
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login-by-qq.js
...loud/cloudfunctions/uni-id-co/module/login/login-by-qq.js
+1
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login-by-weixin.js
.../cloudfunctions/uni-id-co/module/login/login-by-weixin.js
+1
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/relate/bind-qq.js
...niCloud/cloudfunctions/uni-id-co/module/relate/bind-qq.js
+1
-0
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/relate/bind-weixin.js
...oud/cloudfunctions/uni-id-co/module/relate/bind-weixin.js
+1
-0
未找到文件。
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/qq.js
浏览文件 @
5e60e9dd
...
@@ -19,6 +19,7 @@ function getQQPlatform () {
...
@@ -19,6 +19,7 @@ function getQQPlatform () {
}
}
function
generateQQCache
({
function
generateQQCache
({
openid
,
sessionKey
,
// QQ小程序用户sessionKey
sessionKey
,
// QQ小程序用户sessionKey
accessToken
,
// App端QQ用户accessToken
accessToken
,
// App端QQ用户accessToken
accessTokenExpired
// App端QQ用户accessToken过期时间
accessTokenExpired
// App端QQ用户accessToken过期时间
...
@@ -29,12 +30,14 @@ function generateQQCache ({
...
@@ -29,12 +30,14 @@ function generateQQCache ({
switch
(
platform
)
{
switch
(
platform
)
{
case
'
app
'
:
case
'
app
'
:
cache
=
{
cache
=
{
openid
,
access_token
:
accessToken
,
access_token
:
accessToken
,
access_token_expired
:
accessTokenExpired
access_token_expired
:
accessTokenExpired
}
}
break
break
case
'
mp
'
:
case
'
mp
'
:
cache
=
{
cache
=
{
openid
,
session_key
:
sessionKey
session_key
:
sessionKey
}
}
break
break
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/lib/utils/weixin.js
浏览文件 @
5e60e9dd
...
@@ -54,6 +54,7 @@ function getWeixinPlatform () {
...
@@ -54,6 +54,7 @@ function getWeixinPlatform () {
}
}
function
generateWeixinCache
({
function
generateWeixinCache
({
openid
,
sessionKey
,
// 微信小程序用户sessionKey
sessionKey
,
// 微信小程序用户sessionKey
accessToken
,
// App端微信用户accessToken
accessToken
,
// App端微信用户accessToken
refreshToken
,
// App端微信用户refreshToken
refreshToken
,
// App端微信用户refreshToken
...
@@ -67,6 +68,7 @@ function generateWeixinCache ({
...
@@ -67,6 +68,7 @@ function generateWeixinCache ({
case
'
h5
'
:
case
'
h5
'
:
case
'
web
'
:
case
'
web
'
:
cache
=
{
cache
=
{
openid
,
access_token
:
accessToken
,
access_token
:
accessToken
,
refresh_token
:
refreshToken
,
refresh_token
:
refreshToken
,
access_token_expired
:
accessTokenExpired
access_token_expired
:
accessTokenExpired
...
@@ -74,6 +76,7 @@ function generateWeixinCache ({
...
@@ -74,6 +76,7 @@ function generateWeixinCache ({
break
break
case
'
mp
'
:
case
'
mp
'
:
cache
=
{
cache
=
{
openid
,
session_key
:
sessionKey
session_key
:
sessionKey
}
}
break
break
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login-by-qq.js
浏览文件 @
5e60e9dd
...
@@ -137,6 +137,7 @@ module.exports = async function (params = {}) {
...
@@ -137,6 +137,7 @@ module.exports = async function (params = {}) {
extraData
:
{
extraData
:
{
...
extraData
,
...
extraData
,
...
generateQQCache
.
call
(
this
,
{
...
generateQQCache
.
call
(
this
,
{
openid
,
sessionKey
,
// QQ小程序用户sessionKey
sessionKey
,
// QQ小程序用户sessionKey
accessToken
,
// App端QQ用户accessToken
accessToken
,
// App端QQ用户accessToken
accessTokenExpired
// App端QQ用户accessToken过期时间
accessTokenExpired
// App端QQ用户accessToken过期时间
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login-by-weixin.js
浏览文件 @
5e60e9dd
...
@@ -124,6 +124,7 @@ module.exports = async function (params = {}) {
...
@@ -124,6 +124,7 @@ module.exports = async function (params = {}) {
extraData
:
{
extraData
:
{
...
extraData
,
...
extraData
,
...
generateWeixinCache
.
call
(
this
,
{
...
generateWeixinCache
.
call
(
this
,
{
openid
,
sessionKey
,
// 微信小程序用户sessionKey
sessionKey
,
// 微信小程序用户sessionKey
accessToken
,
// App端微信用户accessToken
accessToken
,
// App端微信用户accessToken
refreshToken
,
// App端微信用户refreshToken
refreshToken
,
// App端微信用户refreshToken
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/relate/bind-qq.js
浏览文件 @
5e60e9dd
...
@@ -82,6 +82,7 @@ module.exports = async function (params = {}) {
...
@@ -82,6 +82,7 @@ module.exports = async function (params = {}) {
bindAccount
,
bindAccount
,
extraData
:
{
extraData
:
{
...
generateQQCache
.
call
(
this
,
{
...
generateQQCache
.
call
(
this
,
{
openid
,
sessionKey
sessionKey
})
})
},
},
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/relate/bind-weixin.js
浏览文件 @
5e60e9dd
...
@@ -73,6 +73,7 @@ module.exports = async function (params = {}) {
...
@@ -73,6 +73,7 @@ module.exports = async function (params = {}) {
bindAccount
,
bindAccount
,
extraData
:
{
extraData
:
{
...
generateWeixinCache
.
call
(
this
,
{
...
generateWeixinCache
.
call
(
this
,
{
openid
,
sessionKey
,
// 微信小程序用户sessionKey
sessionKey
,
// 微信小程序用户sessionKey
accessToken
,
// App端微信用户accessToken
accessToken
,
// App端微信用户accessToken
refreshToken
,
// App端微信用户refreshToken
refreshToken
,
// App端微信用户refreshToken
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录