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
request = ai.text_request()
request.lang = 'de' # optional, default value equal 'en'
request.session_id = "<SESSION ID, UNIQUE FOR EACH USER>"
request.query = "Hello"
response = request.getresponse()
Is there any way to omit ssl verification for the text_request() and getresponse() methods.
As, I am using HTTPS, in the server side all the requests require ssl verification.
In the python text examples
Is there any way to omit ssl verification for the text_request() and getresponse() methods.
As, I am using HTTPS, in the server side all the requests require ssl verification.
I need something like the request
requests.get('https://kennethreitz.com', verify=False)
So, text request and response going through api.ai will not check for any ssl certificate.
The text was updated successfully, but these errors were encountered: