Open Facebook Place's Page from Android App -


i'm trying open app page on facebook users can it

i followed this solution, can't seem find way access pages through facebook's scheme mechanism, using solution code, page id open page in facebook's android app, button missing, , subscribing page fails.

found answer:

    public static intent getopenfacebookintent(context context) {         try {         //context.getpackagemanager().getpackageinfo("com.facebook.katana", 0);         return new intent(intent.action_view, uri.parse("fb://page/576525422362966"));        } catch (exception e) {         return new intent(intent.action_view, uri.parse("https://www.facebook.com/576525422362966"));        }     } 

Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -