0

Referring to this post, I have managed to intercept link from Google search result to open my app, but is there any way I can intercept link from Facebook app to open my app? At current stage, clicking on the link only open my webpage in Facebook's build in browser and not my app.

Thanks in advance.

1 Answers1

1

You can do so using app linking (not deeplinking, but similar). You have to provide meta tags to your hosted website. Refer this link https://css-tricks.com/essential-meta-tags-social-media/

. You have to provide your package name and fb app id to the meta tags, and you will be redirected to your app.

Sreedev P R
  • 131
  • 5
  • i don't see how this will open my app rather than showing the webpage normally in Facebook's built in browser – wolfrevokcats Aug 01 '19 at 06:01
  • Just go to the fb developer site and search for meta tags as well as applinking. You'll get the answer. https://developers.facebook.com – Sreedev P R Aug 01 '19 at 06:48
  • Remember, it might take some time to actually work. So you better do some crawling through the developer site to see if it works. – Sreedev P R Aug 01 '19 at 06:49
  • the debugging tool doesn't tell me if the link will open an app or not? – wolfrevokcats Aug 01 '19 at 15:56
  • 1
    You can verify that link, if it contains your fb app id or not..After web crawling, try sharing the same link in fb privately to see if it works. – Sreedev P R Aug 02 '19 at 08:33