apache / incubator-answer-plugins

The Apache Answer plugins repository.
https://answer.apache.org/plugins
Apache License 2.0
62 stars 31 forks source link

Fix connector-google bug #119

Closed eurooooo closed 1 month ago

eurooooo commented 1 month ago

I tried connect to google but faced this issue:

HTTP-Error-500-Apache-Answer

Then I printed out fields in userInfo in function ConnectorReceiver in google.go.

image

It turns out that google doesn't return id field as unique identifier for users, instead it uses sub field.

image

So I changed ExternalID: respGoogleAuthUserInfo.ID: before

to ExternalID: respGoogleAuthUserInfo.Sub: after

And I connected to google account successfully.

LinkinStars commented 1 month ago

@eurooooo Thanks for the contribution.