Facebook 在好友墙上嵌入 Iframe

发布于 2025-01-01 23:13:13 字数 304 浏览 2 评论 0原文

我主要是 ASP.NET(HTML,Js) 程序员,对 Facebook 应用程序一无所知。最近我偶然发现一个问题。我有一个 Web 应用程序,可以生成图像按钮并生成 HTML 或 Iframe 代码,供用户在不同网站上发布,但据我所知:用户不可能嵌入 Iframe 或发布包含链接到朋友墙的图像吗?

因此,在我开始研究如何在 Facebook 上做任何事并继续徒劳无功之前,我只是想咨询一下可能有此类经验的程序员同事,是否有可能在 Facebook 上做到这一点?

如果可能的话,您能给我一些提示,或者给我一些文章吗?

任何帮助表示赞赏,谢谢!

I am primarly ASP.NET(HTML,Js) programmer and I don't know anything about Fb apps. Recently I stumbled on a problem. I have web application that generates image buttons and generates code as HTML or Iframe for user to post on different websites, however as far as I know: It is not possible for user to embbed Iframe or post image wrapped with link to friends wall?

So before I start researching how to do anything on Facebook and go on wild goose chase, I just wanted to check with fellow programmers that might have experiences with this kind of stuff is it even possible to do this on Facebook?

If it is possible, can you give me some hints how the process goes or point me to some articles?

Any help is appreciated, thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟的代价 2025-01-08 23:13:13

不可以,无法将 iframe 发布到用户的墙上。

更具体地说,要发布到墙上,我们使用 Feed 对话框 (使用 FB.ui),您可以从 FB.ui 获取的参数列表中得出您可以做什么和不能做什么(滚动到 feed 中的“属性”对话框文档)

显示“发布到墙上”对话框,你需要做这样的事情:

FB.ui({ 
    method: 'feed',
    link: "link",
    picture: "picture",
    name: "name",
    caption: "caption", 
    description: "description"
}, callback);

No, it is not possible to post iframes to a user's wall.

To be more specific, to post to a wall, we use Feed dialogs (with FB.ui), You can derive what you can and can't do from the list of parameters that FB.ui gets (scroll to "properties" in the feed dialog doc)

To show the "post to wall" dialog, you need to do something like this:

FB.ui({ 
    method: 'feed',
    link: "link",
    picture: "picture",
    name: "name",
    caption: "caption", 
    description: "description"
}, callback);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文