Reputation: 67
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
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