(Choose 1 answer)
Authentication helps a service understand who you are.
Considering that you have imported all the required libraries/classes, which of the following authentication methods are correct?
Assume that the GitHub API call doesn't cause any errors.
A. requests.get('
https://api.github.com/user')
B. requests.get('
https://api.github.com/user', auth=HTTPBasicAuth('username', getpass()))
C. requests.set('
https://api.github.com/user')
D. requests.put('
https://api.github.com/user')