gpt4 book ai didi

android - 使用 Android 应用程序的 Google+ 共享

转载 作者:太空狗 更新时间:2023-10-29 12:49:44 24 4
gpt4 key购买 nike

需要在 Facebook、Twitter、google+ 等所有社交网站上共享我们的应用程序。使用 Share auth api 我们可以在 Facebook 和 Twitter 上共享。

共享授权 API: http://code.google.com/p/socialauth-android/wiki/GettingStarted

无法在 google+ 中分享,有没有可用的插件?

现在正在使用这个示例程序,无法共享。

https://github.com/imellon/Google-Plus-Android-Sample

请帮忙..

最佳答案

虽然在 https://developers.google.com/+/mobile/android/ 上有一些可用的选项,但 Google plus 还没有公开可用的 API。

我强烈建议不要为每个社交网络使用独特的 SDK,因为它们包含很多错误,而且不是很可靠。

如果您只想将应用中的简单文本分享到 Facebook、Twitter、Google+ 等……我建议创建一个选择器,让用户从他的手机中选择他想要用户分享的应用。它简单、可靠,这就是它通常在 android 中完成的方式。

示例代码:

        Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,"your text here");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "post title");
startActivity(Intent.createChooser(shareIntent, "Share..."));

这将向用户显示所有能够共享文本帖子的应用程序。如果用户的手机中有 facebook、twitter 和 google+ 应用程序,那么它会显示所有这些应用程序,用户可以选择要分享到哪些应用程序。

关于android - 使用 Android 应用程序的 Google+ 共享,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13597735/

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