Is it possible to figure out if a user has the fb app installed? I know in Corona the openUrl method returned true if the request was successful. If the request to open the fb app with proper app id was successful id do nothing, if it wasnt id switch over to opening my page via browser.
Comments
http://www.facebook.com/301050619945088
Another solution by using XCode:
First, find page id by using: http://graph.facebook.com/[page_name], example http://graph.facebook.com/GamesForTwo
And here's result:
http://wiki.akosma.com/IPhone_URL_Schemes#Facebook
https://play.google.com/store/apps/developer?id=Into-It+Games
http://appstore.com/LidiaMaximova
if (application:canOpenUrl(url)) then
application:openUrl(url)
else
application:openUrl("http://www.facebook.com/urlToPage")
end