Pushbullet の 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"}}
また、次のエラーが発生します。
ドキュメント内の他のエンドポイントの他のコマンドは正常に機能します...これだけです。
何か提案はありますか?助けてくれてありがとう!:)