同じ Web ページでFacebook の oauthダイアログを開きたいです。
実際、WIN32 (C++) プロジェクトに静的な html ページを埋め込んでおり、IE は 2K (約) より長い URL の長さを許容できないため、Facebook のJS SDKを使用してoauth操作を実行しています。
表示オプションのポップアップとタッチは正常に機能していますが、オプションページとiframeは機能していません。
コードは次のとおりです。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '*************', // App ID
channelUrl : 'file:///D:/channel.htm', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.ui(
{
method: 'oauth',
name: 'Facebook Dialogs',
link: 'http://localhost',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.',
display: 'page'
},
function(response) {
if (response && response.post_id) {
//alert('Post was published.');
} else {
//alert('Post was not published.');
}
}
);
};
</script>
同じWebページでoauthダイアログを開くために、上記のコードに何が欠けているのか教えてください。
ありがとう、SKAR。