我正在将branch.io请求复制到C#中,并尝试通过NewtonSoft再次序列化来创建URL。我已经很好地复制了URL创建请求的主要部分,它确实生成了一个URL。但是当我尝试在查询中定义desktop_url和marketing_title时,我遇到了问题。
{"type":2, "branch_key":"key_test_lerbZ22zyjfpfFtl2auzukafywi220dN", "campaign":"new_product_annoucement", "channel":"email", "tags":["monday", "test123"], "data":"{\"name\": \"Alex\", \"email\": \"alex@branch.io\", \"user_id\": \"12346\", \"$desktop_url\": \"https://www.google.com\",\"$marketing_title\": \"This is Awesome\"}"}
从JSON查询中可以看出,桌面URL和营销标题在前面都有$符号,即$ desktop_url和$ marketing_title。
我认为这是阻止我在C#中创建副本的问题。我知道查询是正确的,就像你现在运行它一样,它肯定会链接到谷歌的搜索页面。
我的C#代码如下:
[HttpPost]
public string GetWithBody([FromBody] getInfo info)
{
String mesh = info.affCode + "=========>" + info.appType;
using (var client = new HttpClient())
{
var request = new branchIOinfo()
{
type = 2,
branch_key = "key_test_lerbZ22zyjfpfFtl2auzukafywi220dN",
campaign = info.appType,
alias = info.affCode,
data = new BranchRequestData
{
desktop_url = "https://www.google.com/"
}
};
var response = client.PostAsync("https://api.branch.io/v1/url",
new StringContent(JsonConvert.SerializeObject(request).ToString(),
Encoding.UTF8, "application/json")).Result;
if (response.IsSuccessStatusCode)
{
dynamic content = JsonConvert.DeserializeObject(
response.Content.ReadAsStringAsync()
.Result);
return content.url;
}
else
{
return "Error Creating URL";
}
我的C#模型如下:
namespace BranchIOAPI.Models
{
public class getInfo
{
public string affCode { get; set; }
public string appType { get; set; }
}
public class branchIOinfo
{
public int type { get; set; }
public string branch_key { get; set; }
public string campaign { get; set; }
public string alias { get; set; }
public BranchRequestData data { get; set; }
}
public class BranchRequestData
{
public string desktop_url { get; set; }
}
}
我如何在此代码中复制该$符号或复制该JSON查询的正确方法。
答案 0 :(得分:2)
虽然这提到了Branch,但问题是如何在使用C#时在序列化期间更改属性名称。
我认为这里适当的方法是使用JsonPropertyAttribute:http://www.newtonsoft.com/json/help/html/JsonPropertyName.htm
所以在类定义中你会做这样的事情:
public class BranchRequestData
{
[JsonProperty("$desktop_url")]
public string desktop_url { get; set; }
}
答案 1 :(得分:0)
开头$
的参数只是我们系统中的遗留约定。您可以像任何其他参数一样指定这些参数,因此除非我忘记了C#的一些特殊内容,只需使用$desktop_url
和$marketing_url
作为data
对象中的键应该可以正常工作