我是CURL的新手,所以我想指导我如何选择将CURL查询的CURL输出推送到数据库或另存为一个驱动器中的文件。
到目前为止,我有一个在Postman中运行的查询,这是我知道可以在哪里运行查询的唯一方法。我将结果手动保存到json文件。我想以某种方式使它自动化。可能吗?
其他问题,是否可以将CURL作为HTTP请求运行以在线获取json结果?
curl 'https://api.app.com/graphql' \
-H 'Accept-Encoding: gzip, deflate, br' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Connection: keep-alive' \
-H 'DNT: 1' \
-H 'Origin: https://api.optixapp.com' \
-H 'access_token: <my token>' \
--data-binary '{"query":"{\n\tmembers(limit:1000, page:1, include_deleted: true) {\n data{\n user{\n fullname\n teams {\n name\n }\n profession\n }\n \t\n }\n }\n}\n "}' \
--compressed