cURL에서 HTTP 헤더가 있는 API 키 전달 API 키로 인증되는 API Proxy를 Apigee에 가지고 있습니다.다음 명령을 사용하여 HTTP 요청 헤더로 키를 전달합니다. curl -v -H "apikey: my_key" http://api_org-test.apigee.net/v1/helloapikey 다음 오류가 발생했습니다. Invoke-WebRequest : Cannot bind parameter 'Headers'. Cannot convert the "apikey: my_key" value of type "System.String" to type "System.Collections.IDictionary". 헤더가 아닌 쿼리 매개 변수에서 키를 찾도록 정책을 수정하면 정상적으로 작동합니다...