Intended use of keys #64
-
Hi there, I'm trying to use this library to send notifications, and I'm unsure how the VAPID keys are supposed to be used. From the Readme, I get the following understanding:
However, this process fails with the following error when sending a notification:
The log shows:
If I look at the relevant code, this isn't surprising: guard let signingKey = vapidKeyLookup[subscriber.vapidKeyID] else {
logger.warning("A key was not found for this subscriber.")
throw VAPID.ConfigurationError.matchingKeyNotFound
} I'm only providing a The readme suggests to use So my questions are:
Thank you for your help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
So at first glance, this sounds like you may have either registered a I would make sure that:
To answer some of your more specific questions:
I'm assuming "the code" refers to
Again, I wouldn't recommend it as it comes with increased complexity. You might want to do this with
Ideally once using the generator on your system, and then shared with your server running in the cloud using secrets or other environment variables. You can also be creative here (I save mine in Application Support as I deploy to a Mac mini). If you save the entire configuration, you can use this one liner to get everything set up: let configurationData = // load from env
let vapidConfiguration = try JSONDecoder().decode(VAPID.Configuration.self, from: configurationData) You can generate keys in process if you have shared persistent storage, if you wanted to. This should be done prior to instantiating the manager though.
The keys should not be changing at runtime, as mentioned, so you should create a single |
Beta Was this translation helpful? Give feedback.
So at first glance, this sounds like you may have either registered a
Subscriber
under a different key configuration with a different key, or you are using your own type that conforms toSubscriberProtocol
and passed in a different key ID. This is an issue because the signatures attached to that subscriber are only valid for the key that was used at registration, so it would fail even if you bypassed this initial check.I would make sure that:
Conf…