以下 POST 从终端通过 cURL 工作:
curl
--header 'Authorization: Bearer <access token here>'
--header 'Content-Type: application/json'
-X POST https://api.pushbullet.com/v2/pushes
--data-binary '{"type": "note", "title": "Note Title", "body": "Note Body"}'
但是,我无法在 Arduino IDE(C 语言)中复制它。我以为我可以使用 HTTPClient 对象,但是我只在文档中看到了 GET 方法,而不是 POST。
我将不胜感激任何对正确方向的点头。