Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question]: not work notificationReceived how can i solved it #1204

Open
sagirr opened this issue Oct 23, 2024 · 0 comments
Open

[Question]: not work notificationReceived how can i solved it #1204

sagirr opened this issue Oct 23, 2024 · 0 comments

Comments

@sagirr
Copy link

sagirr commented Oct 23, 2024

How can we help?

let deferredPrompt;

    // PWA yükleme isteğini yönetme
    window.addEventListener('beforeinstallprompt', (e) => {
        e.preventDefault();
        deferredPrompt = e; // Olayı bir değişkende saklayın
    });

    // OneSignal'ı başlatma
    window.OneSignal = window.OneSignal || [];
    window.OneSignal.push(["init", {
        appId: "YOUR-APP-ID", // Buraya OneSignal uygulama kimliğinizi yerleştirin
        safari_web_id: "web.onesignal.auto.YOUR-SAFARI-WEB-ID", // Safari için geçerliyse burayı doldurun
        notifyButton: {
            enable: true,
        },
        autoRegister: true,
        persistNotification: true,
    }]);

    // Bildirim geldiğinde yapılacaklar
    window.OneSignal.push(function() {
        window.OneSignal.on('notificationReceived', function(data) {
            console.log("Bildirim geldi:", data); // Bildirim verisini konsola yazdır
            const notificationData = data.notification;
            const title = notificationData.headings ? notificationData.headings.en : "Başlık yok";
            const content = notificationData.contents ? notificationData.contents.en : "İçerik yok";
            console.log("Bildirim Başlığı:", title); // Bildirim başlığını konsola yazdır
            console.log("Bildirim İçeriği:", content); // Bildirim içeriğini konsola yazdır
        });
    });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant