0

我有一个混合移动应用程序(应该在 android 和 ios 中工作)。我需要从我的应用程序在 facebook 墙上发布。请注意它是一个混合应用程序,所以我不应该使用任何 java 或 c 代码。

我尝试了以下方法,它在模拟器中工作,但在实际设备中没有。请帮我。

<script>
window.fbAsyncInit = function() {
FB.init({
appId : ' my appID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};

(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>


        <script type="text/javascript">
$(document).ready(function(){
$('#share_button').live('click', function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'HyperArts Blog',
link: 'http://hyperarts.com/blog',
picture: 'http://www.hyperarts.com/_img/TabPress-LOGO-Home.png',
caption: 'I love HyperArts tutorials',
description: 'The HyperArts Blog provides tutorials for all things Facebook',
message: ''
});
});
});
</script>

谢谢

4

1 回答 1

1

我遇到了这个。你的:document.location.protocol 假设要拉入 FB SDK 实际上是“file:///”,这就是该 FB JS 库的 url 中输入的内容。手动指定 http:// 或 https:// 这对我来说在 IOS 上的 safari webView 上都不起作用,所以我不得不使用 AJAX 手动点击端点。

于 2013-07-10T00:37:38.413 回答