admin管理员组文章数量:1345319
I have a OneSignal account hooked up to a Cordova/iOS app. I need to save the player id in my own database so I can send push notifications to specific users when tasks are due or events are happening.
I've looked at the API here: but I don't know how to call a JavaScript function to save the identifier to a variable. There is no example of this.
Any help would be much appreciated.
I have a OneSignal account hooked up to a Cordova/iOS app. I need to save the player id in my own database so I can send push notifications to specific users when tasks are due or events are happening.
I've looked at the API here: https://documentation.onesignal./reference#view-device but I don't know how to call a JavaScript function to save the identifier to a variable. There is no example of this.
Any help would be much appreciated.
Share Improve this question edited Sep 23, 2016 at 23:01 Gdeglin 12.6k5 gold badges53 silver badges67 bronze badges asked Mar 18, 2016 at 17:41 user1840525user1840525 2012 silver badges6 bronze badges 1- why you need javasript to get playerIDs? while add device only it will return playerID, then store into database. then retrieve from your database. – Nagaraj Jayaraman Commented Nov 28, 2016 at 5:29
1 Answer
Reset to default 12I figured it out.
window.plugins.OneSignal.getIds(function(ids) {
//document.getElementById("OneSignalUserID").innerHTML = "UserID: " + ids.userId;
//document.getElementById("OneSignalPushToken").innerHTML = "PushToken: " + ids.pushToken;
alert(JSON.stringify(ids['userId']));
});
本文标签:
版权声明:本文标题:ios - Using OneSignal and I'm trying to save player id to javascript variable, API unclear - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778025a2537338.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论