当我尝试在我的 android facebook 应用上发布链接时,缩略图是错误的。这是网站上的随机图片。我有:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "my google play link");
startActivity(Intent.createChooser(intent, "Share with"));
我该如何解决?