View in English

  • Apple Developer
    • Get Started

    Explore Get Started

    • Overview
    • Learn
    • Apple Developer Program

    Stay Updated

    • Latest News
    • Hello Developer
    • Platforms

    Explore Platforms

    • Apple Platforms
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    Featured

    • Design
    • Distribution
    • Games
    • Accessories
    • Web
    • Home
    • CarPlay
    • Technologies

    Explore Technologies

    • Overview
    • Xcode
    • Swift
    • SwiftUI

    Featured

    • Accessibility
    • App Intents
    • Apple Intelligence
    • Games
    • Machine Learning & AI
    • Security
    • Xcode Cloud
    • Community

    Explore Community

    • Overview
    • Meet with Apple events
    • Community-driven events
    • Developer Forums
    • Open Source

    Featured

    • WWDC
    • Swift Student Challenge
    • Developer Stories
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Centers
    • Documentation

    Explore Documentation

    • Documentation Library
    • Technology Overviews
    • Sample Code
    • Human Interface Guidelines
    • Videos

    Release Notes

    • Featured Updates
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • Downloads

    Explore Downloads

    • All Downloads
    • Operating Systems
    • Applications
    • Design Resources

    Featured

    • Xcode
    • TestFlight
    • Fonts
    • SF Symbols
    • Icon Composer
    • Support

    Explore Support

    • Overview
    • Help Guides
    • Developer Forums
    • Feedback Assistant
    • Contact Us

    Featured

    • Account Help
    • App Review Guidelines
    • App Store Connect Help
    • Upcoming Requirements
    • Agreements and Guidelines
    • System Status
  • Quick Links

    • Events
    • News
    • Forums
    • Sample Code
    • Videos
 

Vidéos

Ouvrir le menu Fermer le menu
  • Collections
  • Toutes les vidéos
  • À propos

Plus de vidéos

  • À propos
  • Code
  • Meet Web Push for Safari

    Bring better notifications to your websites and web apps in Safari on macOS with Web Push. We'll show you how you can remotely send notifications to people through the web standards-based combination of Push API, Notifications API, and Service Workers.

    Ressources

    • Push API
    • Notifications API
    • Sending web push notifications in web apps and browsers
    • Service Worker API
    • Learn more about bug reporting
      • Vidéo HD
      • Vidéo SD

    Vidéos connexes

    WWDC23

    • What’s new in web apps

    WWDC22

    • What's new in Safari and WebKit
  • Rechercher dans cette vidéo…
    • 8:27 - BrowserPetsWorker.js

      // BrowserPetsWorker.js
      
      function handleMessageEvent(event) {
          // ...
      };
      self.addEventListener('message', (event) => {
          handleMessageEvent(event);
      });
      
      function primeCaches() {
          // ...
      };
      self.addEventListener('install', (event) => {
          primeCaches();
      });
      
      self.addEventListener('fetch', (event) => {
          event.respondWith(caches.match(event.request));
      });
    • 8:42 - BrowserPetsMain.js

      // BrowserPetsMain.js
      
      var registration;
      if ('serviceWorker' in navigator) {
          let registration = await navigator.serviceWorker.getRegistration();
          if (!registration)
              registration = await navigator.serviceWorker.register('BrowserPetsWorker.js');
      }
    • 9:00 - BrowserPetsMain.js subscribeToPush()

      // BrowserPetsMain.js
      
      async function subscribeToPush() {
          // ...
      }
      
      // BrowserPetsMain.html
      
      <button onclick="subscribeToPush()">Register for Updates</button>
    • 9:19 - BrowserPetsMain.js subscribe

      // BrowserPetsMain.js
      
      async function subscribeToPush() {
          let serverPublicKey = VAPID_PUBLIC_KEY; 
      
          let subscriptionOptions = {
              userVisibleOnly: true,
              applicationServerKey: serverPublicKey
          };
      
          let subscription = await swRegistration.pushManager.subscribe(subscriptionOptions);
      
          sendSubcriptionToServer(subscription);
      }
    • 9:36 - BrowserPetsMain.js subscriptionOptions

      // BrowserPetsMain.js
      
      async function subscribeToPush() {
          let serverPublicKey = VAPID_PUBLIC_KEY; 
      
          let subscriptionOptions = {
              userVisibleOnly: true,
              applicationServerKey: serverPublicKey
          };
      
          let subscription = await swRegistration.pushManager.subscribe(subscriptionOptions);
      
          sendSubcriptionToServer(subscription);
      }
    • 10:21 - BrowserPetsMain.js request permission to push

      // BrowserPetsMain.js
      
      async function subscribeToPush() {
          let serverPublicKey = VAPID_PUBLIC_KEY; 
      
          let subscriptionOptions = {
              userVisibleOnly: true,
              applicationServerKey: serverPublicKey
          };
      
          let subscription = await swRegistration.pushManager.subscribe(subscriptionOptions);
      
          sendSubcriptionToServer(subscription);
      }
    • 11:13 - BrowserPetsWorker.js push

      // BrowserPetsWorker.js
      
      self.addEventListener('push', (event) => {
          let pushMessageJSON = event.data.json();
      
          // Our server puts everything needed to show the notification
          // in our JSON data.
          event.waitUntil(self.registration.showNotification(pushMessageJSON.title, {
              body: pushMessageJSON.body,
              tag: pushMessageJSON.tag,
              actions: [{
                  action: pushMessageJSON.actionURL,
                  title: pushMessageJSON.actionTitle,
              }]
          }));
      }
    • 12:06 - BrowserPetsWorker.js notification click

      // BrowserPetsWorker.js
      
      self.addEventListener('notificationclick', async function(event) {
          if (!event.action)
              return;
      
          // This always opens a new browser tab,
          // even if the URL happens to already be open in a tab.
          clients.openWindow(event.action);
      });

Developer Footer

  • Vidéos
  • WWDC22
  • Meet Web Push for Safari
  • Open Menu Close Menu
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • Icon Composer
    • SF Symbols
    Open Menu Close Menu
    • Accessibility
    • Accessories
    • Apple Intelligence
    • Audio & Video
    • Augmented Reality
    • Business
    • Design
    • Distribution
    • Education
    • Games
    • Health & Fitness
    • In-App Purchase
    • Localization
    • Maps & Location
    • Machine Learning & AI
    • Security
    • Safari & Web
    Open Menu Close Menu
    • Documentation
    • Downloads
    • Sample Code
    • Videos
    Open Menu Close Menu
    • Help Guides & Articles
    • Contact Us
    • Forums
    • Feedback & Bug Reporting
    • System Status
    Open Menu Close Menu
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles
    • Feedback Assistant
    Open Menu Close Menu
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program
    • Mini Apps Partner Program
    • News Partner Program
    • Video Partner Program
    • Security Bounty Program
    • Security Research Device Program
    Open Menu Close Menu
    • Meet with Apple
    • Apple Developer Centers
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Academies
    • WWDC
    Read the latest news.
    Get the Apple Developer app.
    Copyright © 2026 Apple Inc. All rights reserved.
    Terms of Use Privacy Policy Agreements and Guidelines