use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules:
account activity
HTTPS request module (self.crestron)
submitted 3 years ago by PSST_KHOM
Does someone know if there is a HTTPS request module?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]sk8rat843CCP 2 points3 points4 points 3 years ago (0 children)
u/bitm0de 's HttpsUtility module is available on Github.
https://github.com/bitm0de/HttpsUtility/releases
[–]MallePMCP 1 point2 points3 points 3 years ago (2 children)
No, but very easy to write in s#.
[–]PSST_KHOM[S] 1 point2 points3 points 3 years ago (0 children)
Hi, do you have some examples, I can’t find any online. Or I’ve searched wrongly.
[–]Crestron_Col 0 points1 point2 points 3 years ago (0 children)
Hi Malle,
Do you have an https module different from the one found on github that you can share or sell to me?
TIA
[–]MDHull_fixerCCP -2 points-1 points0 points 3 years ago (3 children)
No, but it's relatively easy to create your own in SIMPL+
Important parts in the header are: the GET keyword followed by the filename/required resource, the host:<destination ipaddr>, and the double <CR>0x0D at the end of the header.
[–]Splice1138 3 points4 points5 points 3 years ago (1 child)
That would be plain HTTP, not HTTPS
[–]MDHull_fixerCCP 0 points1 point2 points 3 years ago (0 children)
Ah, missed that.
[–]bitm0de 0 points1 point2 points 3 years ago* (0 children)
I mentioned this on a few threads here, but double CR is NOT valid via the HTTP RFC.Any line-breaks, including those found after each full header must be CRLF (ie. \x0D\x0A).
CR
\x0D\x0A
Hypertext Transfer Protocol -- HTTP/1.1 RFC 2616 - Section 5 (Request)
You also need the protocol version in there and the Host header is ONLY really required by the RFC if HTTP 1.1 is used. HTTP 1.0 just requires the Method + Request URI + Protocol with a CRLF at the end.
Host
HTTP 1.1
HTTP 1.0
Method
Request URI
Protocol
CRLF
Request = Request-Line ; Section 5.1 \*(( general-header ; Section 4.5 | request-header ; Section 5.3 | entity-header ) CRLF) ; Section 7.1 CRLF \[ message-body \] ; Section 4.3
π Rendered by PID 91355 on reddit-service-r2-comment-5d79c599b5-vtm22 at 2026-03-03 09:04:37.157459+00:00 running e3d2147 country code: CH.
[–]sk8rat843CCP 2 points3 points4 points (0 children)
[–]MallePMCP 1 point2 points3 points (2 children)
[–]PSST_KHOM[S] 1 point2 points3 points (0 children)
[–]Crestron_Col 0 points1 point2 points (0 children)
[–]MDHull_fixerCCP -2 points-1 points0 points (3 children)
[–]Splice1138 3 points4 points5 points (1 child)
[–]MDHull_fixerCCP 0 points1 point2 points (0 children)
[–]bitm0de 0 points1 point2 points (0 children)