「私たちは現在URLにアクセスできません」という返信があったときにgoogle apiを呼び出します。しかし、リソースは存在し、アクセス可能でなければなりません。"現在、URLにアクセスできません。"
https://vision.googleapis.com/v1/images:annotate
要求内容:
{
"requests": [
{
"image": {
"source": {
"imageUri": "http://yun.jybdfx.com/static/img/homebg.jpg"
}
},
"features": [
{
"type": "TEXT_DETECTION"
}
],
"imageContext": {
"languageHints": [
"zh"
]
}
}
]
}
応答内容:
{
"responses": [
{
"error": {
"code": 4,
"message": "We can not access the URL currently. Please download the content and pass it in."
}
}
]
}