如果用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都没问题。