I'm querying ChatGPT to explain this to a novice. Could you copy/paste the text in the image you pasted in post #765. Be sure to overwrite your credentials with REDACTED.
curl.exe
-s --form-string “token=REDACTED" --form-string "user=REDACTED" --form-string "message=TEST" --form-string "html=1" --form-string "device=MobilePhone" --form-string "sound=siren" --verbose
* Trying 104.20.42.236:443...
* Connected to api.pushover.net (104.20.42.236) port 443 (#0)
* schannel: disabled automatic use of client certificate
* schannel: ALPN, offering http/1.1
* schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate.
* Closing connection 0
And when I put in the --ssl-no-revoke it looks like:
curl.exe
-s --form-string "token=REDACTED" --form-string "user=REDACTED" --form-string "message=TEST" --form-string "html=1" --form-string "device=MobilePhone" --form-string "sound=siren" --verbose --ssl-no-revoke
* Trying 104.20.42.236:443...
* Connected to api.pushover.net (104.20.42.236) port 443 (#0)
* schannel: disabled automatic use of client certificate
* schannel: ALPN, offering http/1.1
* schannel: ALPN, server accepted to use http/1.1
POST /1/messages.json HTTP/1.1
Content-Type: multipart/form-data; boundary=------------------------d9e490cf5328987c
* We are completely uploaded and fine
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Date: Thu, 06 Mar 2025 13:04:47 GMT
< Content-Type: application/json; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Frame-Options: SAMEORIGIN
< X-Frame-Options: DENY
< X-XSS-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
< X-Download-Options: noopen
< X-Permitted-Cross-Domain-Policies: none
< Referrer-Policy: strict-origin-when-cross-origin
< Access-Control-Allow-Origin: *
< Access-Control-Allow-Methods: POST, OPTIONS
< Access-Control-Allow-Headers: X-Requested-With, X-Prototype-Version, Origin, Accept, Content-Type, X-CSRF-Token, X-Pushover-App, Authorization
< Access-Control-Max-Age: 1728000
< X-Limit-App-Limit: 10000
< X-Limit-App-Remaining: 9633
< X-Limit-App-Reset: 1743483600
< ETag: W/"698371fee63a0615073933c8bf1a76d7"
< Cache-Control: max-age=0, private, must-revalidate
< X-Request-Id: d6de6c55-25af-4b95-ab35-1b34193e0a30
< X-Runtime: 0.075391
< Strict-Transport-Security: max-age=31536000
< X-PO-H: h
< cf-cache-status: DYNAMIC
< Server: cloudflare
< CF-RAY: 91c20f980a69b3ce-MIA
<
{"status":1,"request":"d6de6c55-25af-4b95-ab35-1b34193e0a30"}* Connection #0 to host api.pushover.net left intact