Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bobgroup-go-utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bob Public Utils
bobgroup-go-utils
Commits
5be47317
Commit
5be47317
authored
3 months ago
by
Cornel Rautenbach
Browse files
Options
Downloads
Patches
Plain Diff
ExtractAppleEmailFromIDToken
parent
f6e27167
No related branches found
Branches containing commit
Tags
v1.265.0
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
auth/social_login.go
+16
-0
16 additions, 0 deletions
auth/social_login.go
with
16 additions
and
0 deletions
auth/social_login.go
+
16
−
0
View file @
5be47317
...
...
@@ -71,3 +71,19 @@ func ValidateAppleCode(code, redirectURI, encryptionKeySecret string, isDebug bo
return
string_utils
.
InterfaceToString
(
email
)
}
func
ExtractAppleEmailFromIDToken
(
idToken
string
)
(
string
,
error
)
{
claim
,
err
:=
apple
.
GetClaims
(
idToken
)
if
err
!=
nil
{
return
""
,
err
}
email
:=
(
*
claim
)[
"email"
]
emailVerified
:=
(
*
claim
)[
"email_verified"
]
if
emailVerified
!=
true
{
return
""
,
errors
.
Error
(
"email not verified"
)
}
return
string_utils
.
InterfaceToString
(
email
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment