You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to use the token-based authentication to connect to my GLPI instance but I've been facing the following error an SSL Error.
This comes from the request generated by the line 214 in glpi.py : r = requests.request('GET', full_url, auth=auth, headers=headers)
I would like to add the possibility to choose verify=True/False in order to skip the error for "certificate verify failed" : r = requests.request('GET', full_url, auth=auth, headers=headers, verify=verify)
Thanks again for all the work you've been doing, and all improvements to come !
Best regards,
Guillaume
The text was updated successfully, but these errors were encountered:
Hello,
I've been trying to use the token-based authentication to connect to my GLPI instance but I've been facing the following error an SSL Error.
This comes from the request generated by the line 214 in glpi.py :
r = requests.request('GET', full_url, auth=auth, headers=headers)
I would like to add the possibility to choose verify=True/False in order to skip the error for "certificate verify failed" :
r = requests.request('GET', full_url, auth=auth, headers=headers, verify=verify)
Thanks again for all the work you've been doing, and all improvements to come !
Best regards,
Guillaume
The text was updated successfully, but these errors were encountered: