gpt4 book ai didi

android - 在 Facebook sdk 中使用 ShareLinkContent 添加消息?

转载 作者:行者123 更新时间:2023-11-29 17:34:19 29 4
gpt4 key购买 nike

在 Android 应用程序中使用 ShareLinkContent 时,有没有办法将消息添加到 ShareDialog。使用 Facebook SDK 4.0。我正在使用这段代码

  ShareLinkContent linkContent = new ShareLinkContent.Builder()

.setContentTitle("XXXXX")
.setContentDescription(
"XXXXX in real time")
.setContentUrl(Uri.parse("http://play.google.com/store/apps/details?id=" + getApplicationContext().getPackageName()))
.build();



shareDialog.show(linkContent);

最佳答案

使用:

ShareLinkContent content = new ShareLinkContent.Builder()
.setContentUrl(yourUrl)
.build();

ShareApi shareApi = new ShareApi(content);
shareApi.setMessage(message);
shareApi.share(facebookCallback);

关于android - 在 Facebook sdk 中使用 ShareLinkContent 添加消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31339597/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com