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
{"responses":[{"success":false,"error":{"code":"app/network-error","message":"Error while making request: Stream closed with error code NGHTTP2_PROTOCOL_ERROR. Error code: ERR_HTTP2_STREAM_ERROR"}}],"successCount":0,"failureCount":1}
I am using the "firebase-admin": "^13.0.2", sdk. The sendEachForMulticast not working on my development mode (did not try yet in production). However, if I am using the send method it will successfully push the notification.
The text was updated successfully, but these errors were encountered:
Is your server/development workflow somehow block http2 outgoing requests? sendEachForMulticast() and sendEach() methods uses HTTP/2 by default and the send() method uses HTTP/1
You can try disabling HTTP/2 in sendEachForMulticast() using the enableLegacyHttpTransport() function and see if that helps.
I am using the
"firebase-admin": "^13.0.2",
sdk. ThesendEachForMulticast
not working on my development mode (did not try yet in production). However, if I am using thesend
method it will successfully push the notification.The text was updated successfully, but these errors were encountered: