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 have a facebook application and created an app page in the app settings. But it seems they don't really have a connection to each other unless I want to set up my app as a tab although the page appears in the app's advanced settings.

Is there a way to get the App Page's ID from the Application Object?

share|improve this question

2 Answers

up vote 0 down vote accepted

Based on the current official documentation (http://developers.facebook.com/docs/reference/api/application/) I would say that you can not get that information from the Application object.

What I don't really get is why you need to get that? Don't you already know the app page id/url?

share|improve this answer
I don't want to add the App Page ID to my database if it's possible to get it from the Application Object via the Graph API. – DonJuwe Feb 15 '12 at 18:06
You don't have to put it in a database, you can also put it in a configuration file that you load at runtime, or even hardcoded... any of those options seem, to me at least, better for this specific task. why? cuz you only have one app (right?) and why waste a http request for a api call (it takes time you know) if you already have that info? – Nitzan Tomer Feb 15 '12 at 18:09
So App and App Page do not have any usable relation to each other and there is just the button "Go to App" which makes out the difference between App Page and a normal Page? – DonJuwe Feb 15 '12 at 18:15
basically, yeah, that's how it is... Just until recently, each application had an application page, which was different than a regular fb page (and it had almost the same address as the app: facebook.com/APP_NAME instead of apps.facebook.com/APP_NAME), but facebook changed it in the last months so that the app page is just a regular page, but you can set which page it is in the app settings. – Nitzan Tomer Feb 15 '12 at 18:22
ok thanks a lot – DonJuwe Feb 15 '12 at 18:37

Can't you get that from the 'link' field?

http://developers.facebook.com/docs/reference/api/application/

share|improve this answer
no, that takes you to the canvas page.. for example, try the example in the page you gave the link for (the graffiti application), and click the "link". – Nitzan Tomer Feb 15 '12 at 18:07
The link field provides the App Link. I need the link to the App Page instead. – DonJuwe Feb 15 '12 at 18:08

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.