Can context part of the Firebase https onCall function be manipulated or anyone can mimic the Api request to create the header by ownself and call the Firebase https onCall firebase cloud functions using Postman.
1 Answer
The full spec of the wire protocol is in the documentation. Essentially you need to send a request with a Firebase ID Token in the Authorization header and a JSON body formatted like:
{
"data": { /* your data here */ }
}
1 Comment
PhillipJacobs
Haha what an underrated answer. This is exactly what I needed. Just the data wrapper.