在Facebook墙上发布应用程序链接,是否显示正确的图标?

时间:2013-06-17 10:16:02

标签: android facebook facebook-graph-api

我正试图通过我的应用程序分享从Google Play商店到我的Facebook墙的应用程序链接。但是当链接发布在我的墙上时,它会显示错误的图标。

当我点击链接时,它会将我重定向到正确的位置。

String message = "play.google.com/store/apps/details?id="+ mItem.getPackageName();
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(share, "Share "+mItem.getAppName()+" with your friends"));

2 个答案:

答案 0 :(得分:2)

我找到了答案:

而不是

String message =“play.google.com/store/apps/details?id="+ mItem.getPackageName();

我应该使用以下

String msg =“https://market.android.com/search?q=pname:”+ mItem.getPackageName();

答案 1 :(得分:1)

使用此工具查看您在Facebook上发布的链接: https://developers.facebook.com/tools/debug

Facebook通常会在标题中搜索图片标记,但它会不时更改