Muhammad Taqi
Muhammad Taqi

Reputation: 5424

Django Import User Profile from linkedin

I have django web app, where i have some registered user, now i want to give them option to connect to linkedin and import their profile from linkedin instead of creating manually on my app. I have seen some libraries on github, but they only import when we have both consuemer and secret key of user, but in my case i don't have these, i just want my users to give option to import their profile data from linkedin in one click.

Upvotes: 3

Views: 870

Answers (1)

awwester
awwester

Reputation: 10162

django-allauth provides what you need for getting user information from linkedin. They also connect to many other libraries if you want to give other options to connect social accounts.

Upvotes: 2

Related Questions