oAuth ログイン用の Facebook ファン ページ アカウントにアプリを追加しようとしています。
タブが欲しくないので、うまくいくと思っていた方法でしmethod: 'apprequests'
たが、エラーが発生し続けます。An error occurred with Prayerfish Login. Please try again later.
アプリをファンページに移動する方法について何か提案はありますか?
注**この HTML ページはFacebook のチュートリアルからのものです
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>My Add to Page Dialog Page</title>
</head>
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='addToPage(); return false;'>Add to Page</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "****************", status: true, cookie: true});
function addToPage() {
// calling the API ...
var obj = {
//method: 'pagetab',
method: 'apprequests',
redirect_uri: 'https://www.myDomain.com',
};
FB.ui(obj);
}
</script>
</body>
</html>