我在我的javascript代碼中做了很多東西,用於在頁面上張貼feed作爲m`,但是我怎麼才能通過一次點擊就可以通過javascript獲得權限。作爲管理員使用javascript api的Facebook頁面發佈
這是我的代碼。上面的腳本的
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p>
<a href="javascript:;" onclick='postToFeed(); return false;'>Post to Group</a>
</p>
<p id='msg'></p>
<script>
FB.init({appId: "apid", status: true, cookie: true});
function postToFeed() {
FB.api('/page_id/feed', 'post',
{
message : "It's awesome ...",
link : 'http://csslight.com',
picture : 'http://csslight.com/application/upload/WebsitePhoto/567-grafmiville.png',
name : 'Featured of the Day',
from: 'pageid',
description : 'CSS Light is a showcase for web design encouragement, submitted by web designers of all over the world. We simply accept the websites with high quality and professional touch.'
},
function(response) {
alert(JSON.stringify(response));
});
}
</script>
</body>
輸出是
但我wan't張貼作爲BeCrazzy.com
不Rajnish ..!
簡單地說,我想以管理員的身份在頁面上張貼feed。請幫幫我。 :)
可能重複的[如何發佈到粉絲專頁,而不是用戶](http://facebook.stackoverflow.com/questions/8034753/how-to-post-to-facebook-fanpage-as-fanpage-非用戶) – ifaour
我想我上面的答案仍然有效。 – ifaour
是的,你是對的,但我有點混亂.. 如何獲得訪問令牌使用JavaScript API ...抱歉,我不能得到任何解決方案。 – Rajnish