当前位置: 代码迷 >> 综合 >> 调用阿里云API失败问题,提示协议不支持,Protocol “‘https“ not supported or disabled in libcurl
  详细解决方案

调用阿里云API失败问题,提示协议不支持,Protocol “‘https“ not supported or disabled in libcurl

热度:90   发布时间:2024-02-06 06:16:02.0

如果用Windows shell提示错误如下:


```powershell
Invoke-WebRequest : 无法绑定参数“Headers”。无法将“System.String”类型的“Authorization:4b83662e2 a2144e2bec31c082dfda5aa”值转换为“System.Collections.IDictionary”类型。                           所在位置 行:1 字符: 86                                                                              + ... p=113.87.188.238' -H 'Authorization:4b83662e2a2144e2bec31c082dfda5aa'                         +                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                             + CategoryInfo          : InvalidArgument: (:) [Invoke-WebRequest],ParameterBindingException       + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.InvokeW     ebRequestCommand   

咨询官方客户,终于知道原因在引号上。需要用双引号,而不是官方提供的单引号。编码如下:
curl -i -k --get --include "https://api01.aliyun.venuscn.com/ip?ip=113.87.188.238" -H "Authorization:4b83662e2a21xxxxxxxxxxxxxxxxx" http,https都没问题。
  相关解决方案