在哪里存储 request.json 文件

where to store request.json file

我正在按照快速入门指南 here 试用 Google 智能视频 api。我正在使用云 shell 来 运行 所有代码。在指南中,要发出注释视频请求,我需要创建一个 request.json 文件。

文件创建后放在哪里?

非常感谢您的帮助!

本例中的 request.json 文件应保存在您将在该指南的第 2 步中发出 curl 请求的同一目录中。 curl 命令最后指向那个文件:

curl -s -H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
'https://videointelligence.googleapis.com/v1beta1/videos:annotate' \
-d @request.json

@request.json 表示它正在当前目录中查找文件。