admin管理员组文章数量:1341686
Here is my python code, and encountered run time error,
Error: 401 { "statusCode": 401, "message": "Unauthorized. Access token is missing,
invalid, audience is incorrect (), or have expired." }
import requests
# Azure OpenAI Configuration
API_KEY = "xxxxxx" # API key from Azure OpenAI
ENDPOINT = ";
# API data
payload = {
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me a joke."}
],
"temperature": 0.7,
"max_tokens": 100
}
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {API_KEY}"
}
# API call
response = requests.post(ENDPOINT, headers=headers, json=payload)
if response.status_code == 200:
print("Response:", response.json())
else:
print("Error:", response.status_code, response.text)
Apikey&ENDPOINT
and gpt-4o model in swedencentral as resource type of Open AI service
model
I rechecked key and other values and topics related this issue. I can't find anything to solve it.
There will be no problem copying and pasting the key values and other necessary values. API version seem correct.
or, I am using free trial, so need to upgrade subscription? I don't think so.
Here is my python code, and encountered run time error,
Error: 401 { "statusCode": 401, "message": "Unauthorized. Access token is missing,
invalid, audience is incorrect (https://cognitiveservices.azure.com), or have expired." }
import requests
# Azure OpenAI Configuration
API_KEY = "xxxxxx" # API key from Azure OpenAI
ENDPOINT = "https://xxx.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2024-02-15-preview"
# API data
payload = {
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me a joke."}
],
"temperature": 0.7,
"max_tokens": 100
}
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {API_KEY}"
}
# API call
response = requests.post(ENDPOINT, headers=headers, json=payload)
if response.status_code == 200:
print("Response:", response.json())
else:
print("Error:", response.status_code, response.text)
Apikey&ENDPOINT
and gpt-4o model in swedencentral as resource type of Open AI service
model
I rechecked key and other values and topics related this issue. I can't find anything to solve it.
There will be no problem copying and pasting the key values and other necessary values. API version seem correct.
or, I am using free trial, so need to upgrade subscription? I don't think so.
Share Improve this question asked Nov 24, 2024 at 3:25 Doobie NamDoobie Nam 111 silver badge1 bronze badge2 Answers
Reset to default 2You use bearer token authorization when you are acquiring the token using Azure AD. Since you are using the API key, you need not do this.
Please change the following code:
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {API_KEY}"
}
to
headers = {
"Content-Type": "application/json",
"api-key": f"{API_KEY}"
}
And you should not get this error.
I fixed it creating another deployment. Thanks!
本文标签:
版权声明:本文标题:python - Azure openai error 401, "Unauthorized. Access token is missing, invalid, audience is incorrect (https:cognitiv 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736246643a1918396.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论