使用curl和postman调用Azure OpenAI Restful API

使用curl在cmd中调用时,注意:json大括号内的每一个双引号前需要加上'\'

curl https://xxxopenai.openai.azure.com/openai/deployments/Your_deployid/chat/completions?api-version=2023-05-15 -H "Content-Type: application/json" -H "api-key:410xxxxxxe7106904" -d "{\"messages\": [{\"role\": \"system\", \"content\": \"hello.\"}]}"

 

 使用postman或getman.cn调用,则不需要

使用curl和postman调用Azure OpenAI Restful API_第1张图片

 

 在header中配置如下

使用curl和postman调用Azure OpenAI Restful API_第2张图片

 

你可能感兴趣的:(postman,测试工具)