Code: Select all
# Imports
import requests
from requests.auth import HTTPBasicAuth
# Set variables
url = "api"
apiuser = 'test'
apipass = 'testpass'
# CALL API
r = requests.get(url, auth=HTTPBasicAuth(apiuser, apipass))
# Print Statuscode
print(r.status_code)
# Print XML
xmlString = str(r.text)
print(xmlString)
Wenn ich einen Browser verwenden würde, um die API aufzurufen und die Anmeldeinformationen einzugeben, erhalte ich die folgende Antwort.
Code: Select all
SUCCESS
99999903219032190321
jack jones
1
Mobile version