【发布时间】:2015-08-25 14:02:59
【问题描述】:
我正在尝试使用 http 请求通过 PushBullet API 发送一个新列表。我使用以下 json 数据发送推送:
{
"items":[
{
"checked":false,
"text":"a"
},{
"checked":true,
"text":"b"
},{
"checked":false,
"text":"c"
}
],
"title":"a",
"type":"list"
}
内容类型设置为“application/json”,我使用与服务器在请求我的推送历史时返回的列表相同的语法。我仍然收到错误 400(错误请求)。
【问题讨论】:
标签: json api http bad-request pushbullet