我有一个使用 Phonegap 构建的应用程序,所以我只有全部 HTML 和 Java 脚本。
我可以使用两行目标 C 代码检查 facebook 是否安装在特定设备上或不在我的应用程序中。
我想在我的应用程序中有一个 facebook 分享按钮,
点击哪个按钮会从我的应用程序打开 facebook 应用程序,并将在用户的墙上发布一些数据,我可以通过这个应用程序调用。
问问题
487 次
1 回答
0
你为什么不试试Phonegap 的FacebookConnect插件,它适用于 iOS 和 Android。
请下载示例应用程序并在您的代码中尝试以下代码段:
<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>
于 2012-12-03T11:32:23.720 回答