I am trying to fetch a JSON response from http://erdos.sdslabs.co/users/shagun.json. Using browser/Python\'s Requests library leads to an authentication error, but curl seems t
In my case, the problem was that I provided url params using requests.get(url, data={...}). After changing it to requests.get(url, params={...}), the problem was solved.