alex
alex

Reputation: 67

Protocol " "https" unsupported or disabed in libcurl

As you can see i have this peculiar error with the extra double quote specifying i have a https protocol error. The curl version i have installed supports https. Does the double quote have anything to do with the error?

Here is the error msg: Protocol ""https" not supported or disabled in libcurl

Upvotes: 0

Views: 228

Answers (1)

Daniel Stenberg
Daniel Stenberg

Reputation: 58004

The protocol scheme you used is put within double quotes, indicating that you passed in a URL that starts with a double quote!

Don't do that, that's not a legal URL and obviously libcurl doesn't approve!

Upvotes: 1

Related Questions