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

本文标签: