我们正在使用Firebase和Firebase的Twilio扩展从我们的应用程序发送文本消息,并获得11200错误。我们的回调URL返回404状态未找到。
参见下文:
Error Details Msg=Request+to+StatusCallback+URL+was+not+successful.&httpResponse=404<html><head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>404 Page not found</title> </head> <body text=#000000 bgcolor=#ffffff> <h1>Error: Page not found</h1> <h2>The requested URL was not found on this server.</h2> <h2></h2> </body></html>
字符串
这个网址,从我可以告诉,是由firebase扩展生成的。我如何解决这个问题?谢谢!
1条答案
按热度按时间9lowa7mx1#
如果你创建了一个firestore函数“statusCallback”,它会被Twilio命中。他们的代码创建了一个错误命名的扩展。
导出const statusCallback = functions.https.onRequest(req:any,res:any)=> { logger.log(“info”,“resource info”,req.body); });