【发布时间】:2017-06-24 08:34:28
【问题描述】:
我正在尝试使用 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": "resource not found." } }。我不确定这是否与错误有关。
有没有人遇到过这个问题,或者有人可以给我一些解决问题的建议吗?谢谢!
【问题讨论】:
-
这个问题你解决了吗=?
标签: python azure computer-vision