-
Notifications
You must be signed in to change notification settings - Fork 170
I'm having problem with https websites #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I am having the same issue. Its seems like httpClient.connect() is not able to connect to server. I am not sure if I am using the right server address in my code but I have tried with so many different ways but every time i get -3 response |
I think the problem is this library doesn't handle https website. You might try with an API to connect to your server and see if the address is ok. I could solve the problem by stablishing communication between my SIM5360 and my server https://... enabling https comunication of my module with AT commands. Although at the beginning it was sending me an 301 error (moved permanently) and it was because this type of module (maybe also de this library) doesn't handle redirected as many api or libraries (like in python) |
Hi, try to create your client like that (for standard SSL port 443): replace wifi with the network connection you use AND in the case of wifi, create your wifi object instance as SSL like this: |
Hi,
I have tried that scheme but still the same problem.
…On Tue, 23 Jun 2020, 10:45 AM bricemiramont, ***@***.***> wrote:
Hi, try to create your client like that (for standard SSL port 443):
HttpClient client = HttpClient(wifi, server, 443);
replace wifi with the network connection you use AND in the case of wifi,
create your wifi object instance as SSL like this:
WiFiSSLClient wifi;
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#87 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD7O7KKFE7T5APE2NLJ6XYTRYBTTBANCNFSM4NJCL4PA>
.
|
What module or chip are you using to connect to the internet? It is imposible to make it work with that statement because Https have to make some certification some staffs that library doesn't do it. If you have a quectec or simcom chip you can enable SSL so the chip carries out all the SSL task |
A similar problem occurred with a program that posts to Google Spread Sheet with ESP32.
I hope this helps someone. |
I am experiencing some difficulties too with HTTPS connections. If I execute I use
If I use I am investigating this issue. |
Hi, I'm trying to stablish communication with a server that uses https but without sucess. I have been striving to login to that server but without success.. This is how I do it
I always receive -3, which is timeout
The text was updated successfully, but these errors were encountered: