Git Product home page Git Product logo

Comments (5)

mikemee avatar mikemee commented on July 18, 2024 1

Is anyone else seeing this? Is there a reference to Facebook's change?

I don't want to change it and then have it fail in other scenarios, so any other input would be helpful. Thanks!

from android-about-box.

mikemee avatar mikemee commented on July 18, 2024 1

Thanks @agos74

This makes sense now that I have looked at the links. Sorry for taking so long to research this. Most of my test devices do not have Facebook installed, so it just opens the web browser which works as expected.

We are currently updating the library, so I will add this to the list of things to change and will use one of the suggestions given in that first link: https://stackoverflow.com/questions/34564211/open-facebook-page-in-facebook-app-if-installed-on-android?noredirect=1&lq=1

from android-about-box.

mikemee avatar mikemee commented on July 18, 2024 1

@AlexDibrivnyy I think this might be the best one to copy. The other answers seem fairly old:

https://stackoverflow.com/a/44309106/19506

from android-about-box.

agos74 avatar agos74 commented on July 18, 2024 1

In my app i used this similar code:

//method to get the right URL to use in the intent
public static String getFacebookPageURL(Context context) {
    String FACEBOOK_URL = "https://www.facebook.com/AppSpiaggeSardegna";
    String FACEBOOK_PAGE_ID = "101578071197617";

    PackageManager packageManager = context.getPackageManager();
    try {
        boolean activated = packageManager.getApplicationInfo("com.facebook.katana", 0).enabled;
        if (activated) {
            return "fb://page/" + FACEBOOK_PAGE_ID;
        } else {
            return FACEBOOK_URL; //normal web url
        }
    } catch (PackageManager.NameNotFoundException e) {
        return FACEBOOK_URL; //normal web url
    }
}

from android-about-box.

agos74 avatar agos74 commented on July 18, 2024

I dont know where to find references to facebook's change but on stackoverflow i founded many posts with similar issues and solutions... like this:
https://stackoverflow.com/questions/34564211/open-facebook-page-in-facebook-app-if-installed-on-android?noredirect=1&lq=1
or
https://stackoverflow.com/questions/54611453/how-to-open-profile-on-facebook-app-from-android-app

from android-about-box.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.