Hi, I'm following the instructions here to request an video annotation processing.
curl -s -H 'Content-Type: application/json' -H 'Authorization: Bearer ACCESS_TOKEN_PASTED_HERE' 'https://videointelligence.googleapis.com/v1/videos:annotate' -d @request.json
My json file includes the public link to the video file stored in the project bucket.
{
"inputUri":"https://storage.googleapis.com/PROJECT_URL_HERE/video.mp4",
"features": [
"LABEL_DETECTION"
]
}
I'm supposed to get a response with the operation name:
The Video Intelligence API creates an operation to process your request. The response includes the operation name:
{ "name": "us-west1.18358601230245040268" }
The actual result I get is nothing, not even an error. Just a moment of waiting followed by a blank command line.
My dashboard shows a successful creation of my credentials but shows no activity on the Video Intelligence API.
Thanks!