好吧这可能是有史以来最愚蠢的问题..但我不能为我的生活弄清楚如何将我的Facebook应用程序添加到我的一个Facebook页面。当我在developers.facebook.com上查看我的应用程序设置时,曾经有一个链接来查看应用程序配置文件页面。然后我可以点击添加到页面链接。但我现在还不知道怎么做这个grrr。
答案 0 :(得分:4)
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Frederick Behrends" />
<title>Facebook PageTab Dialog Generator</title>
</head>
<body>
AppID:<input type="text" id="AppID" value=""/><br />
<input type="button" value="Add to page" onclick="AddToPage();"/>
<script>
function AddToPage(){
var Next,AppID;
AppID = document.getElementById('AppID').value;
if(isNaN(AppID) === true){
alert('AppID ungültig');
return false;
}
if(Next == '' || typeof Next == 'undefined')
Next = 'http://www.facebook.com/';
window.open("http://www.facebook.com/dialog/pagetab?app_id="+AppID+"&next="+Next,"PageTab","width=800,height=500");
return false;
}
</script>
</body>
</html>
使用此html文件。
答案 1 :(得分:0)
试试这个
http://www.facebook.com/add.php?api_key=__APP_ID__&pages
其中 __ APP_ID __ 是您要添加的应用程序的应用程序ID。很简单。