auth_call
Descripción
Autenticación para petición url. Requiere el objeto request.sessions.Session().
Parámetros
Nombre | Tipo | Descripción |
session | None | objeto Session() de request |
authtype | str | 'ntlm', 'basic' o 'digest' |
user
|
str
|
Usuario de autenticación |
passw
|
str
|
Contraseña de autenticación |
Return
Tipo |
None |
Requisitos
-
requests_ntlm.HttpNtlmAuth
-
requests.auth.HTTPBasicAuth
-
requests.auth.HTTPDigestAuth
Versión
- 1.0.0
Ejemplo
import pandoraPlugintools as pt
# Create a request session
session = pt.requests.Session()
# Define authentication details
authtype = 'basic'
user = 'admin'
passw = 'S4n3tk!'
# Call the authentication function
pt._auth_call(session, authtype, user, passw)
# Now you can use the authenticated session to make URL requests
url = 'https://api.com/api/data'
response = session.get(url)
# Print the response
print(response.text)