Skip to main content
Add OneSignal web push to your site by configuring the dashboard, uploading a service worker, and initializing the JavaScript SDK. OneSignal supports Chrome, Firefox, Edge, Safari, and other major browsers. If you use WordPress or Shopify, follow the platform integration instead of this JavaScript SDK guide. If you need deeper customization, prompts, init options, and the service worker path in code, use Custom Code.

WordPress setup

Install the official OneSignal plugin. The plugin adds the SDK and service worker for you.

Shopify setup

Connect Shopify through the Vendo integration. Vendo deploys the SDK on your storefront without theme code edits.

Custom Code setup

Set prompts, init options, and the service worker path in OneSignal.init().
If your site is built with Angular, React, or Vue, use the matching framework guide instead of the snippet on this page.

Requirements

  • HTTPS website: Web push does not work on HTTP or in incognito/private modes.
  • Server access: You need to upload a service worker file to your site.
  • Single origin: Web push follows the Same-origin policy. If you have multiple origins (domains/subdomains), you need multiple OneSignal apps (one per origin). To comply with this browser limitation, you can either:
    • Redirect traffic to a single origin for subscriptions.
    • Create multiple OneSignal apps, one per origin.
If your team already created an account with OneSignal, ask to be invited as an admin role so you can set up the app. Otherwise, sign up for a free account at onesignal.com to get started.

Configure your OneSignal app and platform

In the OneSignal dashboard:
  • Go to Settings > Push & In-App > Web.
OneSignal dashboard Settings page showing Web platform activation

Activate the web platform in your OneSignal settings

Select integration type:

Typical Site (recommended)

Manage prompts and settings directly through the OneSignal dashboard without additional coding.

WordPress

Required if using WordPress with our official plugin.

Custom Code

For developers who need full control over prompts and SDK configuration.

Site setup

Add the site details:
  • Site Name: The name of your site and default notification title.
  • Site URL: The URL of your site. See Site URL for more details.
  • Auto Resubscribe: Enable this to automatically resubscribe users who clear their browser data when they return to your site (no new permission prompt required).
  • Default Icon URL: Upload a square 256x256px PNG or JPG image that appears in notifications and prompts. If not set, a bell icon is used as the default.
If users clear their browser data, they stop receiving push until they return. Enable Auto Resubscribe so they are subscribed again without a new permission prompt. See Subscriptions.
OneSignal web push configuration showing site name, URL, and icon settings

Web settings in the OneSignal dashboard

Site URL

Enter the exact origin of your site, e.g., https://yourdomain.com. Avoid using www. if your site isn’t configured that way. If you have multiple origins, see Requirements.

Local testing

The web SDK can be tested on localhost environments. If you are testing on localhost, use a separate OneSignal app from your production app.
Set the SITE URL to exactly match your localhost environment URL. The URL must match one of these common localhost formats:
  • http://localhost
  • https://localhost:3000
  • http://127.0.0.1
  • https://127.0.0.1:5000
If your localhost URL uses HTTP, select Treat HTTP localhost as HTTPS for testing. Chrome treats http://localhost and http://127.0.0.1 as secure origins, so the SDK can initialize over HTTP on those hosts only. Other hostnames (for example http://mysite.local) are not treated as secure and cannot be used for web push testing.
OneSignal localhost configuration with Treat HTTP localhost as HTTPS option

Local testing in the OneSignal dashboard

Add allowLocalhostAsSecureOrigin: true to your OneSignal init options when initializing on localhost.If you’re testing localhost on HTTPS with a self-signed certificate, you may have to ask Chrome to ignore invalid certificates for testing with: --allow-insecure-localhost. Firefox and Safari provide built-in mechanisms to add exceptions for security certificates.
HTML

Permissions prompt

Typical site setup allows you or your team members to add, remove, and update permission prompts through the OneSignal dashboard anytime.

Web permission prompts

Configure when and how the browser permission dialog appears to your users.

Welcome notification (optional)

You can also set a welcome notification to be sent to users when they subscribe to push notifications. Typical Site and WordPress set this in the dashboard. Custom Code sets welcomeNotification in OneSignal.init(). To set this in the dashboard, go to Settings > Push & In-App > Web:
Welcome notification configuration

Welcome notification configuration

For Custom Code setups, see the welcomeNotification parameters in the Web SDK reference.

Advanced settings

The following features are configurable in the OneSignal dashboard.

Webhooks

The web SDK can POST certain web push events to a URL of your choosing. Web Push Webhooks are a separate implementation from Event Webhooks and cannot be used interchangeably.

Web push webhooks

Send web push events to your server via POST requests.

Service workers

The Web SDK looks for OneSignalSDKWorker.js at your site root (https://yourdomain.com/OneSignalSDKWorker.js) unless you tell it a different location. How you tell the SDK a non-root location depends on the integration type you selected. Typical Site: Set the path in the dashboard. Do not set serviceWorkerPath in code. If you host the file at the root, leave the default path settings. If you host it in a subdirectory, you must set the path below or the SDK still requests /OneSignalSDKWorker.js and registration fails.
  1. Go to Settings > Push & In-App > Web.
  2. Open Advanced Push Settings.
  3. Enable Customize service worker paths and filenames.
  4. Set the fields to match the file’s public URL:
Service worker path, filename, and scope configuration fields

Service worker configuration

With the example values above, the file must be publicly accessible at https://yourdomain.com/push/onesignal/OneSignalSDKWorker.js. Custom Code: Do not use the dashboard path fields. Pass serviceWorkerPath and serviceWorkerParam in OneSignal.init(). See Custom Code setup for the init options, and OneSignal service worker for combining workers and migration.

Click behavior

Click behavior only changes what happens when the user already has your site open in a same-origin tab. If no matching tab is open, the browser opens a new tab to the notification URL. This setting does not change that. Click behavior works on Chrome, Edge, Firefox, and Safari. If no launch URL is set, the notification URL is your homepage. Set a launch URL to send users to a specific page, add UTM tracking, or append ?_osp=do_not_open to dismiss without opening a page. If a same-origin tab is already open, the behavior depends on the setting you choose:

URLs, links, and deep linking

Route users to a specific page, add UTM tracking, or dismiss the notification with ?_osp=do_not_open.

Action buttons

Let users take an action from the notification without using the default click.

Web SDK push event listeners

Listen for click events and run in-app behavior with custom code.

Persistence

Persistence keeps the notification on screen until the user interacts with it. It works only on Chrome and Edge on desktop. Firefox, Safari, and all mobile browsers ignore it. A persistent notification can crowd out text, images, and action buttons, so you may want to disable it if this is a problem for your users. When the value is unset, the SDK currently treats persistence as on.
  • Typical Site: Use the Persistence toggle in Settings > Push & In-App > Web.
  • Custom Code: Set persistNotification in OneSignal.init(). The dashboard toggle does not apply. See persistNotification.
Changes to persistence only take effect for subscribers who visit your site after the update. If you do not see the change, wait for subscribers to revisit your site or ask them to clear their browser data.

Safari Web Push .p12 certificate (optional, legacy)

Leave this off unless you already have your own Safari Web Push .p12 certificate and want to support legacy Safari users. Modern Safari (macOS 13+ and iOS 16.4+) uses standards-based Web Push with VAPID (Voluntary Application Server Identification). OneSignal handles VAPID automatically. You do not upload a certificate for those browsers. Apple does not offer a .p8 token or key for Safari web push. Native iOS and macOS apps use a .p8 to authenticate with APNs. Safari web push does not. The only Apple credential that applies to Safari is a Safari Web Push .p12 certificate, and only for the legacy Website Push ID path. That legacy path still applies to:
  • Safari on macOS 12 and earlier (no VAPID)
  • Existing subscribers who already granted permission through the older Safari API (Safari does not migrate those subscriptions to VAPID)
OneSignal can still provide a certificate for that leftover legacy path. A customer-supplied .p12 is not used for new subscribers on Safari 16.4+ (macOS 13+ or iOS 16.4+). Those subscriptions use VAPID. If you already have your own certificate, enable Safari Web Push .p12 certificate (optional, advanced) in Settings > Push & In-App > Web > Advanced Push Settings. Upload the .p12 file and its password. Typical Site and Custom Code both set this in the dashboard. You do not set it in OneSignal.init().
Safari Web Push .p12 certificate upload toggle and fields in Advanced Push Settings

Safari Web Push .p12 certificate (optional, legacy)


Upload service worker file

Add the OneSignalSDKWorker.js service worker file to your site. Download it from the OneSignal dashboard, or create a file named OneSignalSDKWorker.js with this single line:
OneSignal service worker file download and setup step

Upload service worker file step

The Web SDK looks for this file at your site root unless you tell it otherwise. This page is Typical Site, so you match the file location in the dashboard. If you selected Custom Code, set the path in OneSignal.init() instead. See Custom Code setup. Root (default): Upload the file so it is available at https://yourdomain.com/OneSignalSDKWorker.js. Leave the service worker path settings unchanged. The SDK requests this URL automatically. Subdirectory: If your site already has a service worker (for example a PWA), put OneSignal’s file in a subdirectory such as /push/onesignal/ so it does not conflict with the worker that owns /. Then tell the SDK where to look: follow Service workers and enable Customize service worker paths and filenames. Set Path to service worker files and Service worker registration scope to that subdirectory (for example /push/onesignal/). The file must be publicly accessible at https://yourdomain.com/push/onesignal/OneSignalSDKWorker.js.
If the file is not at the site root and you do not set those dashboard fields, the SDK still fetches https://yourdomain.com/OneSignalSDKWorker.js and service worker registration fails. Custom Code setups must set serviceWorkerPath in OneSignal.init() instead of these dashboard fields.
Once the file is on your server, check the following to make sure it works:
1

Verify the location

Visit the URL the SDK is configured to use. If you left the default settings, that URL is the site root. If you customized the path, it must match Path to service worker files plus the filename:
  • Default: https://yourdomain.com/OneSignalSDKWorker.js
  • Subdirectory example: https://yourdomain.com/push/onesignal/OneSignalSDKWorker.js
2

It must be publicly accessible on your origin

The OneSignalSDKWorker.js file must be publicly accessible and available on your origin. It cannot be hosted via a CDN or placed on a different origin with redirect.When you visit the URL to the file, you should see the code.
3

It must be served with a content-type: application/javascript

This is a JavaScript file and must be served as such. It cannot have a content-type of text/html.

OneSignal service worker

Advanced configuration and migration from other web push providers.

Add code to your site

To initialize OneSignal on your site with the JavaScript SDK, copy the provided code into your website’s <head> tags. The OneSignal dashboard provides this same snippet pre-filled with your app ID. If you load scripts with Google Tag Manager, stop here and follow Google Tag Manager setup. That guide uses this dashboard and service worker work, then initializes the SDK in GTM instead of pasting the snippet below.
HTML

iOS web push support

Apple started supporting web push notifications on iPhones and iPads running iOS 16.4+. Unlike Android devices, where web push works in a supported browser without extra setup, Apple requires a manifest.json file and a user action to add your site to their Home Screen.

iOS web push setup

Add the required manifest.json file and guide users to add your site to their home screen.

Testing the OneSignal SDK integration

Verify that your OneSignal SDK integration is working by testing push notifications and subscription registration.

Check web push subscriptions

1

Launch your site on a test device.

  • Use Chrome, Firefox, Edge, or Safari while testing.
  • Do not use Incognito or private browsing mode. Users cannot subscribe to push notifications in these modes.
  • The prompts should appear based on your permission prompts configuration.
  • Click Allow on the native prompt to subscribe to push notifications.
Browser native permission prompt asking the user to allow or block notifications

Web push native permission prompt

2

Check your OneSignal dashboard

  • Go to Audience > Subscriptions.
  • You should see a new entry with the status Subscribed.
OneSignal dashboard Subscriptions page showing a web push subscription with Subscribed status

Dashboard showing subscription with 'Subscribed' status

You have successfully created a web push subscription. Web push subscriptions are created when users first subscribe to push notifications on your site.

Set up test users

Test users are helpful for testing a push notification before sending a message.
1

Add to Test Users.

In the dashboard, next to the subscription, click the Options (three dots) button and select Add to Test Users.
Options menu on a subscription showing the Add to test users option

Adding a device to Test Users

2

Name your subscription.

Name the subscription so you can easily identify your device later in the test users tab.
3

Create a test users segment.

Go to Audience > Segments > New Segment.
4

Name the segment.

Name the segment Test Users (the name is important because it will be used later).
5

Add the Test Users filter and click Create Segment.

Segment editor with Test Users filter selected and the segment named Test Users

Creating a 'Test Users' segment with the Test Users filter

You have successfully created a segment of test users. You can now test sending messages to this individual device and groups of test users.

Send test push via API

1

Get your App API Key and App ID.

In your OneSignal dashboard, go to Settings > Keys & IDs.
2

Update the provided code.

Replace YOUR_APP_API_KEY and YOUR_APP_ID in the code below with your actual keys. This code uses the Test Users segment created earlier.
3

Run the code.

Run the code in your terminal.
4

Check images and confirmed receipt.

If all setup steps were completed successfully, the test users should receive a notification.
Only Chrome supports images. Images will appear small in the collapsed notification view. Expand the notification to see the full image.
Expanded Chrome push notification on macOS displaying a custom image

Expanded push notification with image on Chrome macOS

5

Check for confirmed receipt.

In your dashboard, go to Delivery > Sent Messages, then click the message to view stats. You should see the confirmed stat, meaning the device received the push.
Safari does not support confirmed receipt.

Push notification message reports

View delivery, click, and conversion stats for your push notifications.
You have successfully sent a notification via the API to a segment.
If notifications are not arriving, contact support@onesignal.com with the following:
  • The API request and response (copy-paste into a .txt file)
  • Your Subscription ID
  • Your website URL with the OneSignal code

User identification

The previous section covered creating web push Subscriptions. This section expands to identifying Users across all their subscriptions (including push, email, and SMS) using the OneSignal SDK. It covers External IDs, tags, multi-channel subscriptions, privacy, and event tracking to help you unify and engage users across platforms.

Assign External ID

Use an External ID to identify users consistently across devices, email addresses, and phone numbers using your backend’s user identifier. This ensures your messaging stays unified across channels and 3rd party systems (especially important for Integrations). Set the External ID with the SDK’s login method each time a user is identified by your app.
OneSignal generates unique read-only IDs for subscriptions (Subscription ID) and users (OneSignal ID).As users download your app on different devices, subscribe to your website, and/or provide you email addresses and phone numbers outside of your app, new subscriptions will be created.Setting the External ID via the SDK is highly recommended to identify users across all their subscriptions, regardless of how they are created.

Add Tags

Tags are key-value pairs of string data you can use to store user properties (like username, role, or preferences) and events (like purchase_date, game_level, or user interactions). Tags power advanced Message Personalization and Segmentation allowing for more advanced use cases. Set tags with the SDK’s addTag and addTags methods as events occur in your app. In this example, the user reached level 6 identifiable by the tag called current_level set to a value of 6.
OneSignal user profile showing a data tag named current_level with value 6

A user profile in OneSignal with a tag called "current_level" set to "6"

You can create a segment of users with a level between 5 and 10, then use that segment to send targeted and personalized messages:
Segment editor filtering users where current_level is greater than 4 and less than 10

Segment editor showing a segment targeting users with a current_level value of greater than 4 and less than 10

Push notification composer targeting the Level 5-10 segment with a personalized message

Push notification targeting the Level 5-10 segment with a personalized message

Add email and/or SMS subscriptions

The OneSignal SDK creates web push subscriptions automatically when users opt in. You can also reach users through email and SMS channels by creating the corresponding subscriptions. If the email address or phone number already exists in the OneSignal app, the SDK adds it to the existing user. It does not create duplicates. You can view unified users via Audience > Users in the dashboard or with the View user API.
OneSignal user profile showing push, email, and SMS subscriptions linked by External ID

A user profile with push, email, and SMS subscriptions unified by External ID

Best practices for multi-channel communication
  • Obtain explicit consent before adding email or SMS subscriptions.
  • Explain the benefits of each communication channel to users.
  • Provide channel preferences so users can select which channels they prefer.

To control when OneSignal collects user data, use the SDK’s consent gating methods: For more on privacy and security:

Data collected by the SDK

Review what data the OneSignal SDK collects from users.

Handling personal data

Manage and protect user data in compliance with privacy regulations.

Listen to push, user, and in-app events

Use SDK listeners to react to user actions and state changes. The SDK provides several event listeners you can hook into. See the SDK reference guide for more details.

Push notification events

User state changes


Advanced setup & capabilities

Explore more capabilities to enhance your integration:

Migrating to OneSignal

Move from another push provider to OneSignal.

Integrations

Connect OneSignal with third-party tools and platforms.

Action buttons

Add interactive buttons to push notifications.

Multi-language messaging

Send localized messages to users in their preferred language.

Identity Verification

Secure your SDK integration with server-side identity verification.

Custom Outcomes

Track custom conversion events tied to your messages.

Web SDK setup & reference

Web push setup

Enable all key web push features for your integration.

Web SDK reference

Full details on available methods and configuration options.


FAQ

Does web push work on HTTP sites?

No. Web push requires HTTPS. Browsers enforce this as a security requirement. The only exception is localhost and 127.0.0.1, which browsers treat as secure origins for development purposes.

Why do I need a service worker file?

The service worker runs in the background and handles incoming push notifications even when the user does not have your site open. Without it, the browser cannot display notifications. The OneSignalSDKWorker.js file must be publicly accessible on your origin.

Where does the Web SDK look for the service worker?

The Web SDK looks for OneSignalSDKWorker.js at your site root (https://yourdomain.com/OneSignalSDKWorker.js) unless you set a custom path. Typical Site sets the path in the dashboard: enable Customize service worker paths and filenames under Settings > Push & In-App > Web > Advanced Push Settings. Custom Code does not use those dashboard fields. Pass serviceWorkerPath and serviceWorkerParam in OneSignal.init(). See Custom Code setup.

Should I use this guide if my site is on WordPress or Shopify?

No. Use WordPress setup or Shopify setup. Those integrations add the SDK and service worker for you.

What is the difference between Typical Site and Custom Code?

Typical Site is the recommended path on this page: you configure prompts, most settings, and the service worker path in the OneSignal dashboard, then add the JavaScript snippet. Custom Code is for programmatic control. You set prompts, init options, and the service worker path in code with serviceWorkerPath and serviceWorkerParam. See Custom Code setup.

Do I need to upload a Safari certificate?

No, not for Safari on macOS 13+ or iOS 16.4+. OneSignal uses VAPID automatically. Upload a Safari Web Push .p12 only for the legacy Website Push ID path (macOS 12 and earlier, plus existing legacy subscribers). See Safari Web Push .p12 certificate.

Can I use a .p8 key for Safari web push?

No. Apple does not offer a .p8 token or key for Safari web push. Use a .p8 only for native iOS or macOS apps. See iOS p8 token-based connection to APNs. The only Safari credential is a Safari Web Push .p12, and only for the legacy path.

Can I use web push on iOS (iPhone/iPad)?

Yes, starting with iOS 16.4+. However, Apple requires a manifest.json file and the user must add your site to their home screen first. See iOS web push setup for the full requirements. iOS web push uses VAPID. You do not upload a Safari .p12 or .p8 for it.

Why are my notifications not showing?

Common causes include an incorrectly placed service worker file, a mismatched Site URL in the dashboard, or the user having notifications blocked in their browser settings. See Web push: Notifications not shown for a full troubleshooting checklist.
Need help?Chat with our Support team or email support@onesignal.comPlease include:
  • Details of the issue you’re experiencing and steps to reproduce if available
  • Your OneSignal App ID
  • The External ID or Subscription ID if applicable
  • The URL to the message you tested in the OneSignal Dashboard if applicable
  • Any relevant logs or error messages
We’re happy to help!