我有一个使用Phonegap的应用程序构建,所以我拥有全部HTML和Java脚本 我可以使用两行客观C代码来检查facebook是安装在特定设备上还是不安装在我的app中 我希望在我的应用程序中有一个Facebook分享按钮,通过点击它将从我的应用程序打开Facebook应用程序,并将在用户的墙上发布一些数据,我可以通过此应用程序调用。
答案 0 :(得分:0)
为什么不为Phonegap尝试FacebookConnect插件,适用于iOS和Android。
请下载sample申请,然后在您的代码中尝试以下代码段:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/plugin.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
<div id="plugindemo">
<h3>FacebookConnect Plugin</h3>
<a href="#" class="btn large" onclick="plugin.login();">login()</a>
<a href="#" class="btn large" onclick="plugin.requestWithGraphPath();">requestWithGraphPath()</a>
<a href="#" class="btn large" onclick="plugin.dialog();">dialog()</a>
<a href="#" class="btn large" onclick="plugin.logout();">logout()</a>
</div>
</div>
<script type="text/javascript" src="cordova-2.2.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/plugin.js"></script>
<script type="text/javascript" src="js/FacebookConnect.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>