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 need to get an application's category. In order to get that information from the graph api I need to get it's application id. However, all that I have access to is the application name that is in the URL.

I have: http://apps.facebook.com/graffitiwall

I need: https://graph.facebook.com/2439131959

Is there anyway to translate "graffittiwall" into "2439131959"?

Note: I cannot simply use the name because the graph API only looks up users and pages by name.

share|improve this question

2 Answers

up vote 1 down vote accepted

Unfortunately, I don't think retrieveing an application's info through application's name is possible with Facebook Graph API. You need to have the unique id of the application in order to access its basic information.

An interesting idea would be going through users' apprequests to find the ids of different application. Then you can get the category of the application from app id.

share|improve this answer
This page seems to indicate that it should be able to be done throgh FQL: developers.facebook.com/docs/reference/fql/application. Unfortunately, it isn't working. I filed a bug with facebook. – jasonlfunk Jan 24 '12 at 22:15
So you're saying that you queried the application table and it did not return you the id's of the applications, is that correct? – Korhan Öztürk Jan 24 '12 at 22:31
I was using FQL wrong. This is how I eventually got it working: graph.facebook.com/…; – jasonlfunk Feb 15 '12 at 16:13

i think facebook have change their field name canvas_name to namespace.

so now you can get this simply replace canvas_name with namespace.like

https://graph.facebook.com/fql?q=SELECT+app_id,namespace,category+FROM+application+WHERE+namespace=%22graffitiwall%22

share|improve this answer
nice one! this code works! :) – user280109 Oct 31 '12 at 2:03
You can find the ID on the permissions page (when you haven't given permissions to the app). You can see it on the URL. – Jose Adrian Mar 26 at 15: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.