Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
597f2009
Commit
597f2009
authored
Feb 06, 2017
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup! erp5_oauth_google_login: Implementation of login in ERP5 with Google Account
We are expecting user_id instead of username
parent
1fb9ae2b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
bt5/erp5_oauth_google_login/SkinTemplateItem/portal_skins/erp5_oauth_google_login/ERP5Site_receiveGoogleCallback.py
...erp5_oauth_google_login/ERP5Site_receiveGoogleCallback.py
+1
-1
No files found.
bt5/erp5_oauth_google_login/SkinTemplateItem/portal_skins/erp5_oauth_google_login/ERP5Site_receiveGoogleCallback.py
View file @
597f2009
...
@@ -20,7 +20,7 @@ elif code is not None:
...
@@ -20,7 +20,7 @@ elif code is not None:
if
response_dict
is
not
None
:
if
response_dict
is
not
None
:
access_token
=
response_dict
[
'access_token'
].
encode
(
'utf-8'
)
access_token
=
response_dict
[
'access_token'
].
encode
(
'utf-8'
)
response_dict
[
'login'
]
=
context
.
ERP5Site_getGoogleUserId
(
access_token
)
response_dict
[
'login'
]
=
context
.
ERP5Site_getGoogleUserId
(
access_token
)
response_dict
[
'user_id'
]
=
portal
.
portal_membership
.
getAuthenticatedMember
().
getUser
Name
()
response_dict
[
'user_id'
]
=
portal
.
portal_membership
.
getAuthenticatedMember
().
getUser
Id
()
hash_str
=
context
.
Base_getHMAC
(
access_token
,
access_token
)
hash_str
=
context
.
Base_getHMAC
(
access_token
,
access_token
)
context
.
REQUEST
.
RESPONSE
.
setCookie
(
'__ac_google_hash'
,
hash_str
,
path
=
'/'
)
context
.
REQUEST
.
RESPONSE
.
setCookie
(
'__ac_google_hash'
,
hash_str
,
path
=
'/'
)
context
.
Base_setBearerToken
(
hash_str
,
context
.
Base_setBearerToken
(
hash_str
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment