-
-
Notifications
You must be signed in to change notification settings - Fork 384
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Apple login integration #1806
Conversation
resolves #1789 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Could you please also update server.go CLI param comment to match your changes in the parameters/index.md, and prepare a PR which would update the https://github.com/go-pkgz/auth?tab=readme-ov-file#apple-auth-provider documentation as well?
Also a nitpick, please keep the list numeration to 1.
everywhere: that way you never need to update it in case elements are changing order or removed from the middle.
And also you need to write resolves 1789
to the original message for this PR to resolve that issue.
Done! See also go-pkgz/auth#212 |
As mentioned in #1789, Apple login was broken in #1617.
I removed the problematic lines, recompiled a docker image, and confirmed the bug was indeed caused by the wrong
ResponseMode
params.In addition, I've also improved some sections of docs about how to configure credentials used by Apple integration. One thing worth mentioning is that the term "Client ID" used by remark42 does not appear in Apple's developer dashboard but is used in some documentation, which can cause some confusion. Therefore, I added an annotation indicating that the "Client ID" can be either "App ID" or "Service ID".
resolves #1789