Reputation: 3314
I've been using Django Social Auth and I've been able to login using both Facebook and Twitter. But I've been getting a HTTP 400 error when I tried it with linkedin. I've been getting the following error:
Sorry but some error made you impossible to login.
HTTP Error 400: Bad Request (linkedin)
Any ideas how to debug this?
Thanks.
Upvotes: 6
Views: 1315
Reputation: 3701
Quite old question, but I got the chance to debug this issue today and the error was cause by server datetime mismatch with current UTC value, updating the server date fixed the LinkedIn issue.
Upvotes: 1
Reputation: 10091
I'd debug this capturing the network traffic and looking what is wrong in the request. You can use for example Wireshark to capture and browse it. This will at least give you idea which part of OAuth process is failing.
Upvotes: 0