This weekly update comes from Dublin, Ireland, where we’ve concluded Operation Developer Love: Europe 2011. We want to thank the hundreds of developers that spoke to us and came out to our events. This trip has been invaluable to us as we think through the next steps for our products and programs. As promised at the events, we will post the slides and videos to the Dev Site as soon as we can (we hoped to have them posted by now, but are still working on getting all the materials together).
Embedding videos in the News Feed
Developers often want the ability to play video or flash media files within the News Feed. Previously, this required that your domain get added to a whitelist. We have now opened this up to every domain. To embed your video into the News Feed, add the appropriate Open Graph protocol meta tags to your page:
og:video
- e.g., "http://example.com/awesome.swf"og:video:height
- e.g. "640"og:video:width
- e.g. "385"og:video:type
- e.g. "application/x-shockwave-flash"
If you don't specify a og:video:type
, we will try to infer the type.
For example:
<html xmlns:og="http://ogp.me/ns#"> <head> ... [REQUIRED TAGS] <meta property="og:video" content="http://example.com/awesome.swf" /> <meta property="og:video:height" content="640" /> <meta property="og:video:width" content="385" /> <meta property="og:video:type" content="application/x-shockwave-flash" /> ... </head> ...
Changes to Events connection in Graph API and event_member FQL table
Starting on Tuesday next week, developers can specify a start_time
when querying the event_member FQL table. For example, you can query the event_member table to see all the events that I was invited to last year:
SELECT eid from event_member where uid=260300016
and start_time > 1270098000
Looking at the usage of this table and the increasing number of events, we have decided to only return events that have occurred over the past two weeks by default. For example, if you query
SELECT eid from event_member where uid=260300016it will return events that I have been invited to in the past two weeks rather than all the events that I have been invited to.
We think this will result in noticeable performance increases for apps utilizing event data. We plan on implementing this change on May 3rd, 2011.
After this date, if you want all events, you can simply query for events for a start_time > 0
. For example:
SELECT eid from event_member where uid=260300016 and start_time > 0will return all the events that I have been invited to.
This will also affect the Graph API where https://graph.facebook.com/260300016/events will return only events from the past two weeks.
Like button on Platform documentation pages
We often hear that developers want to stay abreast of changes made to our documentation. We recently added a Like button to all of the documentation pages on the Developer Site. If you "like" a doc, we will publish back updates to your News Feed whenever the doc is substantially updated.
Bugzilla activity for the past 7 days:
Developer Forum activity for the past 7 days:
Colm Doyle on the Developer Support team in Dublin is excited to watch Rebecca Black embedded in his News Feed.
TAGS
Sign up for monthly updates from Meta for Developers.