iPhone在使用Corona开发的应用中无法接收到Pushwoosh推送
2017-2-7 4:38:49
收藏:0
阅读:70
评论:0
优秀的开发者们:
我使用Corona SDK开发了一个项目,用于实现推送通知的Android和iPhone版本。
在我的Corona SDK项目中,我使用了GCM服务器来支持Android版本,使用了Pushwoosh服务器来支持iPhone版本。
Android版本现在运行良好。但是iPhone版本只能在未运行的情况下接收到推送通知,无法在运行的应用中接收Pushwoosh的推送通知。
我已经寻找解决这个问题的方法超过两天,但是在Corona SDK的项目中我找不到任何解决方法。
我在main.lua中分享了注册/接收推送通知的代码。
-------------------- main.lua --------------------
if ( system.getInfo("platformName") == "iPhone OS" ) then
notifications.registerForPushNotifications()
end
local function notificationListener( event )
if ( event.type == "remoteRegistration" ) then
local deviceToken = myData.tokenID
local deviceType = 1 --默认为iOS
if ( system.getInfo("platformName") == "Android" ) then
deviceType = 3
end
if(deviceType == 1) then
local PW_APPLICATION = "XXXXX-XXXXX" --在Pushwoosh中使用您的应用ID
local PW_URL = "https://cp.pushwoosh.com/json/1.3/registerDevice"
local function networkListener( event )
if ( event.isError ) then
--出现错误
native.showAlert( "Notification Registration Failed", "An Error Contacting the Server has Occurred.", { "OK" } )
else
--注册成功!
print( "-----------------------------PushWoosh registration successful", system.getInfo("deviceID") )
end
end
local commands_json =
{
["request"] = {
["application"] = PW_APPLICATION,
["push_token"] = deviceToken,
["language"] = "en", --或: system.getPreference( "ui", "language" ),
["hwid"] = system.getInfo("deviceID"),
["timezone"] = 3600, --偏移量(以秒为单位)
["device_type"] = deviceType
}
}
local post_body = json.encode( commands_json )
local headers = {}
headers["Content-Type"] = "application/json"
headers["Accept-Language"] = "en-US"
local params = {}
params.headers = headers
params.body = post_body
network.request ( PW_URL, "POST", networkListener, params )
end
elseif ( event.type == "remote" ) then
if ( system.getInfo("platformName") == "Android" ) then
native.showAlert(event.alert.."on android")
else
native.showAlert(event.alert.."on iphone")
end
print("////////////////////////////////////// 我收到了推送通知("..event.alert.."). ////////////////////////////")
end
end
local launchArgs = ...
if ( launchArgs and launchArgs.notification ) then
notificationListener( launchArgs.notification )
end
Runtime:addEventListener( "notification", notificationListener )
期待能听到好的解决方案以在iPhone上接收正在运行应用的推送通知。
我该如何在Corona SDK项目中实现代码或项目设置?
敬礼, Lion
点赞
评论区的留言会收到邮件通知哦~
推荐文章
- 如何将两个不同的lua文件合成一个 东西有点长 大佬请耐心看完 我是小白研究几天了都没搞定
- 如何在roblox studio中1:1导入真实世界的地形?
- 求解,lua_resume的第二次调用继续执行协程问题。
- 【上海普陀区】内向猫网络招募【Skynet游戏框架Lua后端程序员】
- SF爱好求教:如何用lua实现游戏内调用数据库函数实现账号密码注册?
- Lua实现网站后台开发
- LUA错误显式返回,社区常见的规约是怎么样的
- lua5.3下载库失败
- 请问如何实现文本框内容和某个网页搜索框内容连接,并把网页输出来的结果反馈到另外一个文本框上
- lua lanes多线程使用
- 一个kv数据库
- openresty 有没有比较轻量的 docker 镜像
- 想问一下,有大佬用过luacurl吗
- 在Lua执行过程中使用Load函数出现问题
- 为什么 neovim 里没有显示一些特殊字符?
- Lua比较两个表的值(不考虑键的顺序)
- 有个lua简单的项目,外包,有意者加微信 liuheng600456详谈,最好在成都
- 如何在 Visual Studio 2022 中运行 Lua 代码?
- addEventListener 返回 nil Lua
- Lua中获取用户配置主目录的跨平台方法