-
Notifications
You must be signed in to change notification settings - Fork 215
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
HTTPS AT+SHCONN Issue (SIM7000A with ESP32-S2) #326
Comments
Over the past week, I have made some progress on this front but am still not able to successfully use GET or POST requests with HTTPS. I realized that my firmware and drivers must not be up to date, as EFS Explorer was not properly recognizing the SIMCOM module. After proceeding with the setup steps found here and here, I resolved this issue and was able to ensure that the necessary certificates for SSL connections were saved to the "customer" folder in the alternate file system. The current status of my firmware is displayed below:
This was the main modification that allowed
I haven't seen others with issues about status code Would be interested to see what ideas people have to offer! And I hope that this may help someone with issues down the line. I will keep updating this thread until I get HTTPS working. |
Hello,
I am trying to use an ESP32-S2-DevKitC-1 v1 Board to execute HTTPS communications with a SIM7000A module and a Hologram SIM card. I am under the impression that a secure connection is required for using Webhooks through Hologram, as HTTP POST requests to the Webhook URL I have generated (TCP, changing the beginning of the Webhook URL to http://dashboard.hologram.io) have resulted in status code
301
(Moved Permanently) as opposed to the expected status code200
. This is not surprising but confirms to me that HTTPS is necessary.Surprisingly, even tests to establish SSL/TLS communications with sites such at httpbin.org have yielded
ERROR
atAT+SHCONN
. After the standard initial setup messages, the AT command and reply messages in my serial monitor read as follows:I have been following the instructions provided on this page, which was provided by user @baconcheese113 in a related issue (#156). Up until
AT+SHCONN
, it seems that the replies from the SIM7000A module are as anticipated, which is making this debugging process more difficult.I am intending to use this SIM7000A module to send secure data and thus establishing this HTTPS connection is a necessity. If anyone has any ideas about where to begin with debugging this, please let me know!
The text was updated successfully, but these errors were encountered: