シンプルなフラッシュファイルをFacebookに埋め込んでいますが、うまくいきません...テキストをエコーすると表示されます...しかし、フラッシュファイル自体は表示されません...ここに私がいるものがありますこれまでに行ったこと:
function handleLoginStatus(response) {
if (response.session) { //Show the SWF
//A 'name' attribute with the same value as the 'id' is REQUIRED for Chrome/Mozilla browsers
swfobject.embedSWF("textfla.swf", "newerFlash", "650", "700", "9.0", null, null, null, {name:"newerFlash"});
} else { //ask the user to login
var params = window.location.toString().slice(window.location.toString().indexOf('?'));
top.location = 'https://graph.facebook.com/oauth/authorize?client_id='+APP_ID+'&scope='+PERMS+'&redirect_uri='+REDIRECT_URI+params;
}