使用 javascript sdk 时,应用程序会打开一个带有链接的对话框,facebook 将根据其中的 og 标签获取该链接的某种显示,并将其放入 id 为“UIStoryAttachment”的元素中。
有没有办法以某种方式在我选择的容器元素内产生相同的UIStoryAttachment显示?例如,类似于:
<div id="storyContainer">
<div class="fb-story" data-url="MY_PAGE_URL"></div>
</div>
接着:
FB.XFBML.parse(document.getElementById("storyContainer"));
这当然不存在,但是有什么类似的吗?
谢谢。