添加社交分享链接到phonegap应用程序

时间:2014-11-06 12:43:14

标签: android jquery cordova phonegap-plugins facebook-social-plugins

我有一个使用jquery mobile的应用程序,它输出和图像。

现在我已经在预览页面中显示了图像,我在下面添加了链接,在Facebook和Twitter以及其他平台上分享它们

我该怎么做呢?

当用户点击共享按钮时,默认共享面板应该像这样弹出

https://cdn.tutsplus.com/mobile/uploads/legacy/Android-SDK_Share-Activity/android_share_chooser.png

当用户选择例如twitter时,Twitter应用程序打开并且应该附加图像。

如何实现这一点......我应该在社交网站的api或android api或phonegap api中查看

1 个答案:

答案 0 :(得分:6)

适用于Android,iOS和Window的PhoneGap社交分享插件

使用CLI安装

cordova插件添加https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git

在页面中添加

<button onclick="window.plugins.socialsharing.share('Message, image and link', null, 'https://www.google.nl/images/srpr/logo4w.png', 'http://www.x-services.nl')">message, image and link</button>
<button onclick="window.plugins.socialsharing.share('Message, subject, image and link', 'The subject', 'https://www.google.nl/images/srpr/logo4w.png', 'http://www.x-services.nl')">message, subject, image and link</button>

<强> More...