Json 深度链接URL don';无法在Branch.io仪表板中显示

Json 深度链接URL don';无法在Branch.io仪表板中显示,json,git,deep-linking,branch.io,Json,Git,Deep Linking,Branch.io,我正在为我的android应用程序使用branch.io。我正在尝试通过POST方法生成,代码如下: {"branch_key":"key_test_lerbZ22zyjfpfFtl2auzukafywi220dN", "campaign":"new_product_annoucement", "channel":"email", "tags":["monday", "test123"], "data":"{\"name\": \"Alex\", \"email\": \"alex@bran

我正在为我的android应用程序使用branch.io。我正在尝试通过POST方法生成,代码如下:

 {"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://file.town/download/odrqliwc94d440jt08wxngceo\",\"$marketing_title\": \"2\"}"}
在仪表板中,可以看到活动,可以看到频道,生成的URL指向所需的站点。但生成的URL不会显示在仪表板的“营销”选项卡中,以显示URL有关单击、下载和安装的统计信息


其中是否缺少任何代码?

要使用分支HTTP API创建显示在分支仪表板营销部分的链接,您需要在请求的根级别添加参数“type”:2。您还需要使用描述性的$marketing_标题

下面是使用您提供的参数更新的curl请求:

curl -X POST -H "Content-Type: application/json" -d '{"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://file.town/download/odrqliwc94d440jt08wxngceo\",\"$marketing_title\": \"Super Amazing Branch Link\"}"}' https://api.branch.io/v1/url