How to open native facebook app on mobile from href = ""

When on mobile I want to open my own facebook app from the site a href=""

I tried this solution:

<a class="intent" target="_blank" href="fb://profile" data-scheme="fb://profile">facebook</a> 

      

From this question: https://stackoverflow.com/questions/25861522/how-to-open-instagram-native-app-from-link-in-html

But it still opens in the browser.

+3


source to share


1 answer


This will open your application (on your profile page) -

<h2><a href="fb://profile">FB Profile</a></h2>

Hope it helps.



(This is tested and verified btw :))

Update to this - your page id to load will be like this -

<h2><a href="fb://profile/655146487898613">FB Profile</a></h2>

+3


source







All Articles