I want to convert this curl command to python code:
Curl -X GET -H "Authorization: Bearer $token" "http://blablabla.com"
I converted to this:
requests.get("http://blablabla.com", data={'Authorization' : 'Bearer ' + token}).json()
But i have error "Access denied"