'How can I use a third-party API which has basic authentication (username, password) in Django?
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?
Solution 1:[1]
You can use the Requests package. Something like:
from requests.auth import HTTPBasicAuth
requests.get('https://api.github.com/user', auth=HTTPBasicAuth('user', 'pass'))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Peter Mortensen |