You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
registration endpoint for FCM device are sent without server key , caousing a 401 unauthorized response.
Probably caused by code below from webPushClient
var isGcm = subscription.Endpoint.StartsWith(@"https://android.googleapis.com/gcm/send"); if (isGcm)
adding FCM endpoint should solve the issue , as FCM should be backward compatible (tested )
var isGcm = subscription.Endpoint.StartsWith(@"https://android.googleapis.com/gcm/send") || subscription.Endpoint.StartsWith(@"https://fcm.googleapis.com/fcm/send/"); if (isGcm)
The text was updated successfully, but these errors were encountered:
registration endpoint for FCM device are sent without server key , caousing a 401 unauthorized response.
Probably caused by code below from webPushClient
var isGcm = subscription.Endpoint.StartsWith(@"https://android.googleapis.com/gcm/send"); if (isGcm)
adding FCM endpoint should solve the issue , as FCM should be backward compatible (tested )
var isGcm = subscription.Endpoint.StartsWith(@"https://android.googleapis.com/gcm/send") || subscription.Endpoint.StartsWith(@"https://fcm.googleapis.com/fcm/send/"); if (isGcm)
The text was updated successfully, but these errors were encountered: