python - Microsoft Azure情感API返回[ "statusCode": 404, "message": "Resource not found"]错误

标签 python azure computer-vision

我正在尝试使用 Microsoft Azure 情感 API 测试一些图像。按照 microsoft 上的说明进行操作,我总是收到 { "statusCode": 404, "message": "Resource not found"} 错误。我的代码是从网站上修改的,如下:

########### Python 2.7 #############
import httplib, urllib, base64

headers = {
    # Request headers. Replace the placeholder key below with your subscription key.
    'Content-Type': 'application/json',
    'Ocp-Apim-Subscription-Key': 'key',
}

params = urllib.urlencode({ })

# Replace the example URL below with the URL of the image you want to analyze.
body = "{ 'url':'http://www.scientificamerican.com/sciam/cache/file/35391452-5457-431A-A75B859471FAB0B3.jpg' }"

try:
    # NOTE: You must use the same region in your REST call as you used to obtain your subscription keys.
    #   For example, if you obtained your subscription keys from westcentralus, replace "westus" in the 
    #   URL below with "westcentralus".
    conn = httplib.HTTPSConnection('westcentralus.api.cognitive.microsoft.com')
    conn.request("POST", "/emotion/v1.0/recognize?%s" % params, body, headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
  print("[Errno {0}] {1}".format(e.errno, e.strerror))

此外,当我在浏览器中输入端点 URL 时,即 https://westus.api.cognitive.microsoft.com/emotion/v1.0 ,它显示 { "error": { "code": "ResourceNotFound", "message": "资源未找到。"} }。我不确定这是否与错误有关。

有人遇到过这个问题吗?或者有人可以给我一些解决问题的建议吗?谢谢!

最佳答案

无论您收到什么状态代码和错误消息,我也遇到了同样的问题

[message:protected] => Fail: Code: 404 Value: Not Found details (if any): Resource not found for the segment 'Jobs'..

检查您的参数,如果您正在将已处理的 JobId 和所有内容传递给 azure。然后你就会得到这个问题。您需要核对您传递的文件信息是否已被处理。

谢谢!

关于python - Microsoft Azure情感API返回[ "statusCode": 404, "message": "Resource not found"]错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44734525/

相关文章:

c# - 查询表达式无效 cosmosdb

Python Opencv2 : Background appearing on a no background image after adding it on webcam frame

python - 如何使用 Azure DataBricks Api 提交作业?

python - 有没有工具可以可视化 Python 中的方法调用?

asp.net-mvc - 如何从Azure函数中的HTML表单获取值?

azure - 无法在Azure Function App中创建azure.createQueueService()

neural-network - 如何计算 Google Net 初始模块的感受野?

python - OpenCV 错误 : Assertion failed (mask. size == src1.size) in binary_op

python - Pandas 连接到 Oracle Db 无需连接字符串

python - 在 .py 文件内使用 .py 文件