问题标签 [facebook-wall]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何使用 Facebook android SDK 在 facebook 墙上发布消息集成 android 应用程序
我正在开发社交应用程序这个应用程序集成到 facebook 我的应用程序相关消息发布到 facebook 墙上我在 facebook sdk 中使用 facebook sdk
我正在使用此代码无法发布消息我的意图是 userlogin facebook 我的字符串是打开的,只是发布墙帖
php - 如何创建像 Facebook 墙这样的应用程序
我需要开发一个像http://www.facebook.com/pampers?v=app_151853638190293 这样的应用程序 这是一个 facebook 墙,我正在使用 php。
facebook - 在网站上分享 Facebook 墙
是否可以在网站一侧分享 Facebook 墙?我想让我网站上的每个登录用户在某个区域查看他的 Facebook 墙。如果用户没有登录到 facebook 我希望他登录,那么这将允许他查看他的墙。我不需要其他人在我的网站上显示他的墙。
这怎么可能?
java - 将更新发布到“a”墙上
我有一个 facebook 'like' 应用程序 - 一个虚拟白板,供多个“团队”使用,他们共享该项目共有的“墙”。我为其捕获数据的实体大约有 9-12 个。我试图让用户的主页显示自上次登录以来发生的活动的更新 - 比如 facebook 如何发布通知:
“[USER] 在 [some entity] 上进行了 [some activity] - 20 分钟前”
其中 [...] 是可点击的链接,活动主要(而只是)CRUD。
我将不得不坚持这些更新。我使用 MySQL 作为后端数据库,并考虑为每个项目创建一个可以存储活动的更新表。但似乎每个表都需要一个触发器,这只是多余的。更重要的是,由于存在许多不同的实体,因此很难确定该更新表的表格模式。
限制是使用 MySQL,但我对“如何”实现此功能的其他选项持开放态度。
有任何想法吗?
PS:使用jQuery + REST + Restlet + Glassfish + MySQL + Java
facebook - 在 Facebook 墙上发帖
似乎发帖到您的墙或朋友墙的方式发生了变化。谁能理解你怎么做?
facebook - 如何将 FBML 评论框发布到我的网站 FB 页面而不是我的个人页面?
我正在尝试在我的网站上使用 FBML 评论框,以便它将评论发布到与我的网站关联的我的 FB 页面,而不是我的个人 FB 页面。
iphone - 如何创建 facebook 墙贴并添加视网膜版本的图片
我们正在使用 facebook graph API http://developers.facebook.com/docs/reference/api/post/并添加picture
参数。我们的图片是一个 30x30 像素的图像,这正是我们想要的 facebook 网络版本的大小。但是,在 iPhone4(视网膜显示屏)上使用 FB 移动应用程序时,图像会像素化。
有什么方法可以提供 60x60 的高分辨率图像,但始终以 30x30 的分辨率呈现 facebook 墙贴?
java - Facebook 应用程序 - 如何在用户的墙贴上发布动态内容
我有一个 facebook 应用程序,它根据用户的个人资料信息生成动态 HTML 输出。基本上它由用户相册中的一些图片和一些文本组成,例如生日和位置。整个输出在 HTML 表格中。但它是动态的。现在我想在用户的墙上发布这个(动态)输出。
到目前为止,我遇到的所有帖子都讲述了如何在用户的墙上发表评论,无论是纯文本还是固定的静态图像。但我想把我的输出贴到墙上。我也见过很多这样的应用程序,其中输出发布在用户的墙上以及存储在用户的相册中!!!
我想对输出进行运行时屏幕截图,将其保存,然后将其作为静态图像发布。但在这方面无法获得太多帮助。
我用 PHP 设计了我的应用程序。如果需要,我可以将其迁移到 JAVA(如果没有其他选项)。
facebook - 在 Facebook 墙上自动嵌入视频
当您在 FB 上分享 YouTube 链接时,它会自动将 YT 播放器嵌入到您的墙上。
起初我认为这是 FB 的努力,但后来我注意到许多视频网站都会发生这种情况(FB 可能从未听说过),甚至来自较小的国家。
所以我的问题是,我必须为我的视频网站遵循哪些准则,以便 FB 检测到我的播放器并在分享该视频的链接后自动将其嵌入墙中?
请记住,我不是在谈论使用 API。我说的是用户共享指向包含该视频的页面的链接。
php - How can a Facebook application send a message to all of a user's friends?
We're trying to construct an application that can - at the request of logged-in users with the appropriate blessings within the app - send out a message to any or all of the user's FB friends declaring that they have been sent a gift.
We have been able to get this to work for sending just a small few friends this message, as a wall post (notifications and messages are unavailable in the API). However, with any number of friends larger than ~15, the majority of the users return an OAuthException: (#200) The user hasn't authorized the application to perform this action
.
These same users can be sent the message individually or in a small group. However, we expect to have this feature used by users with hundreds or even thousands of friends.
The API docs have not been forthcoming, especially since they are stuck halfway between the old and new Graph interfaces. We are currently using the following code (in precis) to make the API requests, in PHP, in the presence of a current Facebook session with the credentials of our user:
Does anyone here know:
- Why this is happening
- Whether there is any way to get around it to post to all the users
- If so, what this would be?
Thank you.