I've never done any facebook development and am working on a project which I only require to pull out wall stream from a certain user. Is there such an API I could use for this purpose?
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.
|
|
Facebook exposes a generic API. You can write your own methods of accessing it, or you can use Facebook's libraries (if your preferred language is available). Check out the following link to get started: |
|||||
|
|
Well, if you're happy with JSON, just using the graph API is a good start. e.g. https://graph.facebook.com/starbucks/feed Not too hard to pull that down with Python and put the data in a table... |
|||
|
|
|
Though this is an old post, still i am putting in my reply. This might be helpful. I am using php sdk and here is code for getting the users wall posts (includes posts by other users as well)
here $comments contains the wall post json data. |
|||
|
|