I have seen this topic discussed before, but I think it\'s not the same scenario.
I\'m trying to send push notification from one device (going to be an admin device)
I also got the same error, but mine was on the server side(push from rails to android), but my problem was that i had forgot to specify the content type in the header(i am using RestClient to post to firebase). Hope it might help someone
RestClient.post( "https://fcm.googleapis.com/fcm/send",
{:to => reg_id,:notification => options }.to_json,{:content_type => :json, :accept => :json,:Authorization => "key=*****"}