Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At the f8-conference Facebook just announced the new timeline view. This is based on the new Open-Graph model

The question is, how is this data retrieved via the API?

Retrieval should address a number of complexities:

  • The filtered nature should be just like in the online view, i.e. not everything from the ticker should show up
  • Even more, the granularity of the timeline view should be reflected just like on the webpage (more detail today, less detail in the past, but the option to dig deeper at any time)
  • The aggregation view of app data should be supported
  • The cover image should be part of the data

Right now, it is not obvious to me if this is or will be possible at all.

share|improve this question
Wait a few days and I'm sure more documentation an api's will be rolled out. It's been out less than a day. – BK. Sep 23 '11 at 15:03
Also curious about this. I'm clear on how to add data to the open graph, but completely unclear if I have access to this data (expecially data created by other 3rd party apps.) – Chris Drackett Sep 24 '11 at 23:55
Ok, I've done some experiments with curl. Actions publishing/reading via graph api (post/get) basically work. But the documents do not mention how to the access the aggression via graph api. I hope it won't be another FB non-open function like facebook questions. – Tim Wu Sep 25 '11 at 7:14
2  
your own application data can be accessed with: graph.facebook.com/me/YOUR_NAMESPACE:YOUR_ACTION/… – bytepirate Sep 26 '11 at 10:58

2 Answers

In answer to agam360’s further question in the comments,

But how can we get that "Cover Photos" Id? (looping though all of the Graph data?!)

Use FQL, and take name="Cover Photos" into the WHERE condition of your query too. (But keep in mind that this album name is locale dependend, so if you should be querying the data in another locale than english, you’ll have to adapt the search term.)

share|improve this answer

Partial answer to the fourth bullet:

There is a new photo album called "Cover Photos" with the cover image on position 1. Unfortunately, there doesn't seem to be a way to find the positioning coordinates that define the viewport on the image.

{edit} There's now a cover field on a user which returns the cover photo and the x/y offset needed to display it the same way it's displayed on Facebook {/edit}

share|improve this answer
1  
But how can we get that "Cover Photos" Id? (looping though all of the Graph data?!) – agam360 Nov 22 '11 at 16:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.