我在Parse.com创建了帐户和应用程序。我想通过我的rails应用程序创建推送通知。我已经安装了parse-ruby-client
gem。
然后在我的代码中,我想发送这样的推送:
Parse.init application_id: 'xxxxxxxxxxxxxxxxxxxxxxx',
api_key: 'xxxxxxxxxxxxxxxxxxxxxx',
quiet: false
data = { alert: "This is a notification from Rails" }
push = Parse::Push.new(data, 'News')
push.type = 'android'
# Triggers push notification send
push.save
这给了我那种错误:
Parse::ConnectionError (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed)
在本地计算机上测试。
我已经在某处读过可以通过禁用OpenSSL来绕过它,但我认为这在制作中是个坏主意。
我需要做什么?
答案 0 :(得分:1)
RoR
有很多可能性来解决这个问题。当我使用Charles
时,我得到了一次,但看起来你不是这种情况。我搜索了很多,并找到了列出几种解决方案的资源。希望你能在其中一个中找到你的问题。