OneSignal-Website-SDK
OneSignal-Website-SDK copied to clipboard
[Question]: OneSignal.getUserId() doesn't work anymore ?
How can we help?
I have a script which save UserId into Cookie like this. Its worked perfectly. But now OneSignal.getUserId doesn't work anymore. I trie some way and got nothing.
Please help me !
Thank a lot !!
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
function setCookie(cname, cvalue, exdays) {
const d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
let expires = "expires=" + d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
window.OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: "<?= ONESIGNAL_KEY ?>",
allowLocalhostAsSecureOrigin: true
});
});
OneSignal.push(function() {
OneSignal.getUserId().
then(response => setCookie('onesignal_player_id', response, 365));
});
</script>
@Trungduc79 Thanks for sharing the code but could you provide these details?
- Is the
OneSignal.getUserId().then()
firing with a null response or not at all? - Can you also provide more details such as what browser and operating systems you have tested?
- Can you check the browser's network tab to see if there is a failing request to onesignal.com?
- Is a user and subscription being created on the OneSignal dashboard after accepting notification permission?
@jkasten2 Thank for your respone !,I give you for more detail,
-
Is the OneSignal.getUserId().then() firing with a null response or not at all? -> This function return a null result.
-
Can you also provide more details such as what browser and operating systems you have tested? -> I was run by Chrome, MS EGD on Windows system + Chrome mobile. But same result.
-
Can you check the browser's network tab to see if there is a failing request to onesignal.com? -> Request find, test send a message stil work. Consol no error.
-
Is a user and subscription being created on the OneSignal dashboard after accepting notification permission? -> --- My bad ---- -> This still created a new user,
@jkasten2 Thank for your respone !,I give you for more detail,
Is the OneSignal.getUserId().then() firing with a null response or not at all? -> This function return a null result.
Can you also provide more details such as what browser and operating systems you have tested? -> I was run by Chrome, MS EGD on Windows system + Chrome mobile. But same result.
Can you check the browser's network tab to see if there is a failing request to onesignal.com? -> Request find, test send a message stil work. Consol no error.
Is a user and subscription being created on the OneSignal dashboard after accepting notification permission? -> --- My bad ---- -> This still created a new user,
Docs are very deprecated and unsupported, I am moving to Firebase