Reputation: 123
I have one third-party API (a URL). To access that URL I have to give basic authentication which is username and password.
How can I get data from that API using basic authentication in Django?
Upvotes: 0
Views: 657
Reputation: 76
You can use the Requests package. Something like:
from requests.auth import HTTPBasicAuth
requests.get('https://api.github.com/user', auth=HTTPBasicAuth('user', 'pass'))
Upvotes: 2