我想在我的Facebook应用程序中获取一个提要对话框iframe。但不知怎的,它不让我。 Iframe现在看起来像这样:
我正在尝试使用以下代码:
$html .= '<iframe style="width:800px; height:800px;" src="https://www.facebook.com/dialog/feed?app_id='.$appID.'&redirect_uri=http://apps.facebook.com/'.$appName.'&acces_token='.$accesToken.'"></iframe>'.PHP_EOL;
希望有人知道我做错了什么...我只想在iframe中有以下内容:
答案 0 :(得分:0)
您还需要设置display=iframe
。您调整后的示例代码为(粗体添加):
$html .= '<iframe style="width:800px; height:800px;" src="https://www.facebook.com/dialog/feed?display=iframe&app_id='.$appID.'&redirect_uri=http://apps.facebook.com/'.$appName.'&acces_token='.$accesToken.'"></iframe>'.PHP_EOL;
有关详细信息,请参阅https://developers.facebook.com/docs/reference/dialogs/
上的“常用对话框参数”