Partager via


Pourquoi le proxy ne se moque-t-il pas de ma réponse binaire

Le signe dollar a une signification particulière dans certaines coquilles et peut avoir besoin d’être échappé.

Dans PowerShell, utilisez un backtick :

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

Dans bash, encapsulez l’URL entre guillemets doubles et ajoutez une barre oblique inverse :

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