我正在使用Android中的Branch.io创建一个深层链接,如分支文档中所述,设置一个我希望成为该链接拇指的图像:
BranchUniversalObject branchUniversalObject = new BranchUniversalObject()
.setCanonicalIdentifier(IDENTIFIER)
.setTitle("Link de Teste")
.setContentDescription("This is just a test link.")
.setContentImageUrl("https://image-link")
.setContentIndexingMode(BranchUniversalObject.CONTENT_INDEX_MODE.PUBLIC)
.addContentMetadata("key", value);
LinkProperties linkProperties = new LinkProperties()
.setFeature("sharing")
.addControlParameter("$desktop_url", "http://example.com/home")
.addControlParameter("$ios_url", "http://example.com/ios");
当我与Facebook分享链接时,图像显示正确:
但是当我与Whatsapp共享链接时,不显示任何图像。
有任何帮助吗?感谢。
答案 0 :(得分:2)
$og_image_height
和$og_image_width
params并查看Facebook的open graph debug tool以了解其他任何错误。
答案 1 :(得分:0)
它对我有用,我刚刚添加了$ og_type,$ og_image_width,$ og_image_height,现在一切正常,希望它可以为您image implementation here