为什么代理不模拟我的二进制响应

美元符号在某些贝壳中具有特殊意义,可能需要逃脱。

在 PowerShell 中,使用反引号:

Invoke-WebRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/users/id/photo/`$value" -Proxy http://localhost:8000

在 bash 中,用双引号包装 URL 并添加反斜杠:

curl -ikx http://localhost:8000 "https://graph.microsoft.com/v1.0/users/id/photo/\$value"