Search code examples
react-native

React Native: Deep linking opening Facebook post on fb app using fbid


I am able to open Facebook page using Linking.openURL(`fb://page/${pageId}`);

I'm just wondering if it's possible to open a Facebook post using Linking. I've tried using different schemes like

An example URL from a post in a browser: https://www.facebook.com/photo/?fbid=834708294690078&set=a.207012927459621

fb://post/834708294690078
fb://photo?fbid=834708294690078

None of these works

Is Linking on Facebook limited to only profiles and pages?


Solution

  • You can just simply open the web URL like this. Do not have to use any schemes.

    Linking.openURL("https://www.facebook.com/photo/?fbid=834708294690078&set=a.207012927459621")