我几乎浪费了我一整天的时间来寻找为什么它没有发布在朋友墙上
请帮忙
我没有收到任何错误,但帖子似乎没有出现在朋友墙上。
我得到一个对话框,说要在朋友墙上发帖。当我通过点击分享确认时,它会关闭,但朋友墙上没有任何变化
我尝试在许多不同的朋友墙上检查任何隐私政策,但我认为这不是这里关心的问题。
如果我不指定“to”参数,它会发布在我的个人资料上,但唯一的问题是朋友墙
代码如下
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.js">
</script>
<script src="http://connect.facebook.net/en US/all.js">
</script>
<script type="text/javascript">
window.fbAsyncInit = function()
{
FB.init
(
{
appId : 'appid',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true , // parse XFBML
oauth : true // Enable oauth authentication
}
);
};
$(document).ready(function ()
{
$('#shareonfacebook').click(function (e)
{
e.preventDefault();
var obj=
{
method: 'feed',
name: 'DvimayPostPhoto',
link: 'http://localhost/FaceBook/index.html',
picture: 'http://www.fbrell.com/public/f8.jpg',
caption: 'hey how is my Application ? tell me dude',
description: 'hey how is my Application ?',
to: 'frnd id',
message: ''
};
function callback(response)
{
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
});
}
);
</script>
<script>
FB.init({appId : 'app id'});
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
(function()
{
var e = document.createElement('script');
e.src = document.location.protocol +'//connect.facebook.net/en_US/all.js';
e.sync= true;
document.getElementById('fb-root').appendChild(e);
}
);
</script>
<script src="C:/Users/Dvimay/Desktop/HIGHCHARTS/js/highcharts.js"></script>
<script src="C:/Users/Dvimay/Desktop/HIGHCHARTS/js/modules/exporting.js"></script>
<div id="container" style="height: 400px;width:500px;"></div>
<input type="button" id="shareonfacebook" value="Share This Link on Facebook"></input>
</html>