iMerica / dj-rest-auth

Authentication for Django Rest Framework
https://dj-rest-auth.readthedocs.io/en/latest/index.html
MIT License
1.62k stars 302 forks source link

Ability to provide extra user params for social login #543

Open jahnagoldman opened 10 months ago

jahnagoldman commented 10 months ago

For the apple social login, the id_token does not seem to include name information, only e-mail. This makes it tough to register a new user unless you don't require name (which is what I'm doing as a workaround right now). It would be nice to be able to easily provide extra parameters from the client, because I can get name from the front end apple response outside of the id token. It seems like its possible to send extra parameters but complicated to get them included into the user data when creating a new user. I was not really able to get this working. Am I missing something, or is this is possible to fix/improve?