我有以下ror代码:
app = Publication.find_by_id(params[:background][:publication])
url = 'https://api.parse.com/1/push'
body = { :aps => { "content-available" => 1 }}
body["content-name" => issue] if !issue.empty?
request = Typhoeus::Request.new(url,
method: :post,
body: body.to_json,
headers: { "X-Parse-Application-Id" => app.parse_application_id,
"X-Parse-REST-API-Key" => app.parse_rest_api_key,
"Content-Type" => "application/json"})
request.run
result = JSON.parse(request.response.body).with_indifferent_access
当我跑步时,我从Typhoeus得到以下回应:
RESPONSE: {"code"=>115, "error"=>"Missing the push data."}
它只是一个简单的内容可用推送,告诉应用程序下载最新的问题。关于为什么这不起作用的任何建议?
谢谢!
答案 0 :(得分:0)
由于这篇文章,我想通了:
Send push notification via REST API in Parse.com {"code":115,"error":"Missing the push data."}
我认为对于Parse,您需要在数据哈希中提供内容。在添加了where之后,至少这对我有用。