5

我想在我的 .Net Web API 应用程序中实现 Mailgun 的 webhook,但他们发布的一些参数中有破折号。我该如何解决?

他们发布的示例:

client-type=browser&city=San+Francisco&domain=telzio.com&device-type=desktop&my_var_1=Mailgun+Variable+%231&country=US&region=CA&client-name=Chrome&user-agent=Mozilla%2F5.0+%28X11%3B+Linux+x86_64%29+AppleWebKit%2F537.31+%28KHTML%2C+like+Gecko%29+Chrome%2F26.0.1410.43+Safari%2F537.31&client-os=Linux&my-var-2=awesome&ip=50.56.129.169&recipient=alice%40example.com&event=opened&timestamp=1405017113&token=6khi46bvupa1358v0b3iy29kwumpbajb3ioz4illb6v9bbqkp6&signature=88f46b9ba63ff475bbb3ab193696cf45bf2f25e7e62b44f1e492ff4e085730dd

我的模型:

public class MailgunModel
{
    public string City { get; set; }
    public string Domain { get; set; }
    public string Country { get; set; }
    public string Region { get; set; }
    public string Ip { get; set; }
    public string Recipient { get; set; }
    public string Event { get; set; }
    public long Timestamp { get; set; }
    public string Token { get; set; }
    public string Signature { get; set; }

    public string ClientType get; set; }
    public string DeviceType { get; set; }
    public string ClientName { get; set; }
    public string UserAgent { get; set; }
    public string ClientOs { get; set; }
}
4

2 回答 2

6

最简单的方法之一是接收FormDataCollection并访问您需要的变量。这很糟糕,因为您必须手动映射每个属性,但它适用于简单的场景。

public IHttpActionResult AppointmentMessage(FormDataCollection data)
{
    if (data != null)
    {
        var msg = new MailGunMessage();
        msg.From = data["from"];
        msg.To = data["to"];
        msg.Subject = data["subject"];
        msg.BodyHtml = data["body-html"];
        msg.BodyPlain = data["body-pain"];
        // ... and so on
    }
    return this.Ok();
 }

另一种选择是在您的模型上使用自定义模型绑定器,如下所述:https ://stackoverflow.com/a/4316327/1720615

于 2015-09-01T22:43:55.050 回答
0

您仍然可以使用您的模型作为操作的参数,并通过 Request.Params 例如获取虚线值HttpContext.Current.Request.Params["device-type"]

这样您就可以使用强类型模型而不是 FormDataCollection。

于 2020-07-17T09:49:01.233 回答