我正在尝试使用 Http Request Widget,内容类型 - application/json。我没有看到添加请求标头以提供令牌的选项。此 .Net 代码获得成功响应:
string str = "Hello Webservice";
string url = "https://website.com/webserviceurl.php";
HttpClient httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Add("token", "xxxx");
HttpResponseMessage response = await httpClient.PostAsync(url, new StringContent(str));
在 Twilio Studio 中,我尝试将内容类型设置为格式 url 编码,以便我可以将我的令牌添加为参数,但这不起作用。我收到了 500 条回复。
有没有人这样做过?我已经联系了 Twilio 支持,但我想我在这里可能会很幸运。谢谢