Back to Sails

`req.protocol`

docs/reference/req/req.protocol.md

12.12.2000372 B
Original Source

req.protocol

The protocol used to send this request (req).

Usage

usage
req.protocol;

Example

js
switch (req.protocol) {
  case 'http':
    // this is an HTTP request
    break;
  case 'https':
    // this is a secure HTTPS request
    break;
}
<docmeta name="displayName" value="req.protocol"> <docmeta name="pageType" value="property">