最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ios - Using OneSignal and I'm trying to save player id to javascript variable, API unclear - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 12

I 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']));
            });

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论