代码之家  ›  专栏  ›  技术社区  ›  Kirsten

如何设置函数应用程序从媒体类型“application/x-www-form-urlencoded”提取数据

  •  1
  • Kirsten  · 技术社区  · 7 年前

    我的函数应用程序中有以下代码

    using System.Net;
    
    public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
    {
       var data = await req.Content.ReadAsAsync<PostData>();
    
       var sid = data.sid;
    
       log.Info($"sid ={sid}");
       return req.CreateResponse(HttpStatusCode.OK, $"Current Time : {DateTime.Now}"); 
    }
    
    public class PostData 
    {
       public string sid { get; set; }
    }
    

    错误消息为

    No MediaTypeFormatter is available to read an object of type 'PostData' from content with media type 'application/x-www-form-urlencoded'.
    

    如何设置该功能以使用正确的媒体类型?

    [更新]

    如果我将代码更改为

    var content = req.Content;
    var jsonContent = await content.ReadAsStringAsync();
    log.Info(jsonContent);
    

    我可以看到记录的jsonContent文本以

    ToCountry=AU&ToState=&SmsMessageSid=SM8cac6c6a851  etc
    

    但我不清楚如何提取我需要的数据。

    我尝试添加

     dynamic results = JsonConvert.DeserializeObject<dynamic>(jsonContent);
    

    using Newtonsoft.Json;
    

    但是,这会导致脚本编译错误

    [更新] 研究“集成”选项卡上的示例代码

    示例C#GitHub WebHook函数的代码

    #r "Newtonsoft.Json"
    
    using System;
    using System.Net;
    using System.Threading.Tasks;
    using Newtonsoft.Json;
    
    public static async Task<object> Run(HttpRequestMessage req, TraceWriter log)
    {
        string jsonContent = await req.Content.ReadAsStringAsync();
        log.Info("Hi 1");   // does log
        dynamic data = JsonConvert.DeserializeObject(jsonContent);
    
        log.Info("Hi 2");  // does not log
    
        return req.CreateResponse(HttpStatusCode.OK, $"Current Time : {DateTime.Now}"
        });
    }
    

    这会产生错误

    System.AggregateException : One or more errors occurred. ---> Unexpected character encountered while parsing value: T. Path '', line 0, position 0.
       at Microsoft.Azure.WebJobs.Script.Description.DotNetFunctionInvoker.GetTaskResult(Task task)
    
    1 回复  |  直到 7 年前
        1
  •  2
  •   Tom Sun    7 年前

    对于application/x-www-form-urlencoded,发送到服务器的HTTP消息主体本质上是一个巨大的查询字符串——名称/值对由符号(&)分隔,名称与值之间用等号(=)分隔。例如:

    MyVariableOne=ValueOne&MyVariableTwo=ValueTwo
    

    我们可以从另一个网站获得更多关于应用程序的信息/x-www-form-urlencoded SO thread .

    目前,并非所有的ASP。NET WebHook接收器在功能上还没有完全处理。我还发现一个笑脸 SO Thread . Azure函数可以支持3种类型的Webhook: 通用JSON、GitHub、Slack . 但我们可以用我们的逻辑来处理它。您可以尝试使用以下代码来获取字典中的键值。

     Dictionary<string, string> myDictionary = new Dictionary<string, string>();
     if (req.Content.Headers.ContentType.ToString().ToLower().Equals("application/x-www-form-urlencoded"))
      {
          var body = req.Content.ReadAsStringAsync().Result;
          var array = body.Split('&');
          foreach (var item in array)
          {
                var keyvalue = item.Split('=');
                myDictionary.Add(keyvalue[0],keyvalue[1]);
           }
    
      }
     var sid = myDictionary["SmsMessageSid"];
     log.Info($"sid ={sid}");
     return req.CreateResponse(HttpStatusCode.OK, $"Current Time : {DateTime.Now}");