I am using facebook Graph API to validate Facebook APPs, there was a property canvas_name which was returned by Graph API but Facebook replaced it with namespace and I started to use namespace instead of canvas_name. As the Facebook API documentation says we have removed the canvas name with namespace.
The issue is that when I call the Graph API it sometimes returns namespace and sometimes only name it is confusing to decide which property to use.
Here are two different Facebook APPs I am validating through Graph API and getting different properties.
Which property should I use? name or namespace?
http://graph.facebook.com/173782752713273
{
"id": "173782752713273",
"name": "fbfarooqtv",
"link": "http://www.facebook.com/apps/application.php?id=173782752713273",
"namespace": "fbfarooqtv",
"icon_url": "http://photos-g.ak.fbcdn.net/photos-ak-snc7/v85006/137/173782752713273/app_2_173782752713273_9103.gif",
"logo_url": "http://photos-g.ak.fbcdn.net/photos-ak-snc7/v85006/137/173782752713273/app_1_173782752713273_8525.gif",
"weekly_active_users": "1",
"monthly_active_users": "2"
}
and other returns
http://graph.facebook.com/342927909107736
{
"id": "342927909107736",
"name": "Ticketveri",
"link": "http://www.facebook.com/apps/application.php?id=342927909107736",
"icon_url": "http://static.ak.fbcdn.net/rsrc.php/v1/yT/r/4QVMqOjUhcd.gif?_fbgz=1",
"logo_url": "http://static.ak.fbcdn.net/rsrc.php/v1/y_/r/9myDd8iyu0B.gif?_fbgz=1"
}
Thanks all of you have given answers,
I have accomplished my above task using appId, if anyone do not specify namespace for facebook app they can navigate to there app using appId like this
http://apps.facebook.com/173782752713273
and if one specify the namespace then one can navigate to there app using appId and namespace too, as
http://apps.facebook.com/342927909107736
and http://apps.facebook.com/fbfarooqtv.
and I was validating facebook app from referrer of page, now I have added the fall back on namespace if any app do not have namespace then I takes the appId from referrer and validates it by calling graph API which returns the information about app if it exists. as bellow
http://graph.facebook.com/173782752713273
