gpt4 book ai didi

来自 cURL 的 Pushbullet API - 无效请求

转载 作者:行者123 更新时间:2023-12-02 09:34:41 31 4
gpt4 key购买 nike

我正在使用Pushbullet's API开发一个应用程序,但是在运行 https://docs.pushbullet.com/v2/pushes/ 处的示例代码时,我遇到了奇怪的错误.

我正在执行以下 cURL 命令(在 Windows 中):

curl -k -u <MY_API_KEY>: -X POST https://api.pushbullet.com/v2/pushes --header 'Content-Type: application/json' --data-binary '{"type": "note", "title": "Note Title", "body": "Note Body"}'

...但它不断生成以下错误:

{"error": {"type":"invalid_request","message":"The param 'type' has an invalid value.","param":"type","cat":"\u003e:3"}}

它还会产生此错误: enter image description here

文档中其他端点的其他命令工作正常......只是这个。

有什么建议吗?谢谢您的帮助! :)

最佳答案

Windows 似乎不支持命令行上的此类引号。这是一个有效的示例:

curl https://api.pushbullet.com/v2/pushes -X POST -u <access token>: --header "Content-Type: application/json" --data-binary "{\"type\": \"note\", \"title\":\"Note Title\", \"body\": \"Note Body\"}"

我想我将尝试用行为不那么令人困惑的东西来替换curl示例。

关于来自 cURL 的 Pushbullet API - 无效请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28379866/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com