how can i call HTTP callable cloud function from postman?

前端 未结 4 1915
死守一世寂寞
死守一世寂寞 2021-01-18 12:49

I want to know that can i call cloud function from postman software .When i\'m calling CF from postman it always give me

 \"error\": {
        \"status\": \"         


        
4条回答
  •  醉话见心
    2021-01-18 13:25

    In Postman make post request, header Content-Type should be application/json and then in raw make json in this format

    {
        "data": {
        "text":"hi how are you",
        "phoneNumbers":"+92123455679"
        }
    }
    

提交回复
热议问题