I'm implementing Push Notification for Web App via Firebase and follow this guidelines from Google
https://github.com/firebase/quickstart-js/tree/master/messaging
On index.html
I see this code
// [START get_messaging_object]
// Retrieve Firebase Messaging object.
const messaging = firebase.messaging();
// [END get_messaging_object]
// [START set_public_vapid_key]
// Add the public key generated from the console here.
messaging.usePublicVapidKey('<YOUR_PUBLIC_VAPID_KEY_HERE>');
// [END set_public_vapid_key]
My question is "What is Vapid Key ? and Where I can find this key ?"
Based on https://firebase.google.com/docs/cloud-messaging/js/client
Vapid Key is "Voluntary Application Server Identification". We can find it in:
Or look at steps by steps images below