Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
c564d00ae3190972227df0d379fb41426f0d9847
1 parent
10ea5371
修改QQ与新浪微博登录的回调地址为http(登录失败的bug)
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
library/Plugin/Partner/qqconnect/Config.inc.php
library/Plugin/Partner/sinaweibo/Config.inc.php
library/Plugin/Partner/qqconnect/Config.inc.php
View file @
c564d00
...
...
@@ -5,7 +5,7 @@ defined('SITE_MAIN') || define('SITE_MAIN', $_SERVER['HTTP_HOST']);
return
array
(
'appid'
=>
'100229394'
,
'appkey'
=>
'c0af9c29e0900813028c2ccb42021792'
,
'callback'
=>
SITE_MAIN
.
'/passport/login/qqcallback'
,
'callback'
=>
strtr
(
SITE_MAIN
,
array
(
'//'
=>
'http://'
))
.
'/passport/login/qqcallback'
,
'scope'
=>
'get_user_info,add_share,upload_pic,get_idollist,get_fanslist'
,
'errorReport'
=>
true
,
);
...
...
library/Plugin/Partner/sinaweibo/Config.inc.php
View file @
c564d00
...
...
@@ -5,5 +5,5 @@ defined('SITE_MAIN') || define('SITE_MAIN', $_SERVER['HTTP_HOST']);
return
array
(
'appId'
=>
'3739328910'
,
'appKey'
=>
'9d44cded26d048e23089e5e975c93df1'
,
'appCallbackUrl'
=>
SITE_MAIN
.
'/passport/login/sinacallback'
,
'appCallbackUrl'
=>
strtr
(
SITE_MAIN
,
array
(
'//'
=>
'http://'
))
.
'/passport/login/sinacallback'
,
);
...
...
Please
register
or
login
to post a comment