What is the code to call for https?

Salamouna

Elite Member
Jr. VIP
Joined
Aug 28, 2014
Messages
11,852
Reaction score
8,677
Hello
is there any specific code to call on website to know if it has https or not?
will check in bulk some website via scrapebox

200
301
302
 
There's no specific "http response code" for ssl. It will return 200 if succesful, for both http as well as https.

Try checking if the url begins with https, and the response code is 200 (AND not a 301/302 to http).. if both conditions are met, it has https. I am not the best with scrapebox, but I assume it would somehow be possible to check for the "url begins with".
 

ERR_SSL_PROTOCOL_ERROR​

 
Hello
is there any specific code to call on website to know if it has https or not?
will check in bulk some website via scrapebox

200
301
302
httpstatus.io: This tool allows you to paste up to 100 URLs and check their status codes and redirect chains in one batch. By default, HTTP URLs will be checked when the protocol is missing
 
Back
Top