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.

I want to fetch all the accessible data of a facebook page (Only page table data is enough for me now). I only have the page url of that page. After observing some urls i found that the url's can be in the following 2 formats.

Now what i am doing is querying in facebook page table by username(for 1st type of url's) or page_id(for 2nd one's).

Here are the questions..

  • Am i doing anything wrong?
  • Anyone have any better sugestion? actually i am searching for a generation solution of this problem.
  • I also want to get the page visits count. Can you please give me some idea of how can i find the visits count?

Thank you very much for your time.

share|improve this question
You can't get visit counts for user profiles. – Matt Feb 2 '12 at 10:10
1  
take a look at Facebook Insights – Lix Feb 2 '12 at 11:49
@Lix Thanks. I will check that. – monish Feb 2 '12 at 16:12

1 Answer

up vote 1 down vote accepted

For the columns to query from page see: http://developers.facebook.com/docs/reference/fql/page/

the FQL will look like for by ID:

SELECT {columns} FROM page WHERE page_id=PAGEID

and for by page name:

SELECT {columns} FROM page WHERE username='PAGEUSERNAME'

Happy coding!

share|improve this answer
Thanks for your reply. I can fetch data from a page querying by page_id/username. My question was the way i extract page_id/username from facebook page url is correct/work for all pages? – monish Feb 2 '12 at 16:28
No, some will have a username and some will be by id. – DMCS Feb 2 '12 at 16:33
1  
Thank you very much.. – monish Feb 4 '12 at 15:45
My pleasure. Happy Coding! – DMCS Feb 4 '12 at 15:57

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.