我试图用SocialSharing插件与PhoneGap的生成。
我已经把下面进入config.ml文件:
<gap:plugin name="nl.x-services.plugins.socialsharing" version="4.0.8" />
这是我的HTML索引页的示例:
<html>
<head>
<script type="text/javascript" src="SocialSharing.js"></script>
</head>
<body>
<section id="landmarks" data-role="page">
<button onclick="window.plugins.socialsharing.share('My message')">share!</button>
<button onclick="window.plugins.socialsharing.share('Message only')">message only</button>
<button onclick="window.plugins.socialsharing.shareViaTwitter('Message via Twitter')">message via Twitter</button>
</section>
</body>
</html>
当我点击按钮(从PhoneGapBuild下载应用程序后)什么也没有发生。
有任何想法吗?