通过Rest发送推送通知时,Postman中的Https错误

时间:2015-08-09 11:05:49

标签: rest parse-platform restful-authentication postman

我是解析 休息Api

我想在邮递员中的他们的网站(Here)中测试样本但是每次发布它都会给我以下身份验证错误:

enter image description here

我想在Postman中测试以下代码(参见origin here

    curl -X POST \
  -H "X-Parse-Application-Id: 0VoIZO8cgmnyfiuklLLkKkxOX7r" \
  -H "X-Parse-REST-API-Key: UjU5eb5zjic75mPZVdHExYqnneT" \
  -H "Content-Type: application/json" \
  -d '{
        "deviceType": "ios",
        "deviceToken": "0123456789abcdef0123456789cdef0123456789abcdef",
        "channels": [
          ""
        ]
      }' \
  https://api.parse.com/1/installations

如何解决此问题?那是什么 ?什么是必需的?

1 个答案:

答案 0 :(得分:4)

您需要GET请求,api doc会说明POST请求。

1)输入正确的URL并选择POST请求方法。根据文档添加所需的标题。

enter image description here

2)在您的请求正文中输入原始JSON数据。

enter image description here

3)您将收到输出。由于api密钥和应用程序ID无效,因此我收到了未经授权的错误。

enter image description here