React native app link business page to facebook messenger - facebook

Im trying to open facebook messenger from react native app using Linking to business page.
I succeed to do that for user
Linking.openURL(`fb-messenger://user/1000XXXXXXXXX`)
but for business page such this page
I tried this way
Linking.openURL(`fb-messenger://user//sport24live`)
or
Linking.openURL(`fb-messenger://sport24live`)
and it's not working, not open anything.

Facebook has added m.me links which is a shortened URL that redirects to a person, page or a bot in messenger.
Therefore you can use it as
Linking.openURL(`http://m.me/sport24live`)
Check out more in the docs here

Related

how to get url from which facebook page chat box starts?

We are using facebook messenger chat box from fb page on our website.
Our website is ecommerce store, but when customer start a chat and asking about product we don't see the url where is he on the site.
We try to look everywhere in the facebook page messages but we don't see this info anywhere.
Is there a way how to get it?
Thank you a lot for any advice.

How to create a test facebook page for testing chatbot

I am developing a chatbot for facebook messenger platform using wit.ai.
I created a facebook page to test the bot but the page is visible to everyone. Is there a way that i can have my facebook page visible only for me and the testers i add to developers.facebook.com?
I tried unpublishing the page in facebook but if i do that, the page is not visible even for my account when i search in messenger platform.
Thanks in advance!

Facebook: How to post on own page using graph api without login

I own a blog like website, and as part of promotions I have a corresponding facebook page. My website contents are dynamic & when it gets updated(through a bot), I want the facebook page also to be updated by an automated post/publish from the bot which shows up the updates to the page viewers.
I could create a facebook page, and my bot programme which updates the web content is also able to publish the content on my facebook page using graph apis. But the posts are not publicly visible(Visible to only me/admin).
I could learn that it could be because my app through which my bot program is publishing to my facebook page is not public.
App->Status & Review, Status (Tab)
(Do you want to make this app and all its live features available to the general public?).
To make the app public, there is a review process which checks the facebook login button used in the website but my posts are through a backend bot and not through user action. My website is like a blog without user authentication so can't think of adding a login there.
Is it possible without having user login on the page? Also, If I post using twitter apis and link/configure my twitter account to my facebook page, it works.I guess this is not a new problem and many brands have automated it already, so need to understand how.
Am I missing something?
Apologies: I have checked previous posts on the same topic, but couldn't find relevant answers for the current Facebook version & policies.
Without the Login Review process, your posts can not be visible to the public.
To get it working, just send your page management tool (with the login dialog) for the review. Once they review it and accepted, you may change the flow a bit eg: skip the login part and allow auto posting.

Can Facebook SDK allow for iOS app (linked with a facebook app) to post directly to a particular page?

I am trying to make an iOS app integrated with the Facebook SDK that allows the user to post directly to a facebook group page and receive updates directly from the group page through the app, as an alternative to the facebook app.
I know that the Facebook dialog class in the latest SDK allows us to share a status directly to one's wall but I have yet to find a way to post it to a page other than the user's wall. Is there a way to gain access to a facebook group page and retrieve the posts from the page and also post directly to it?

Integrating facebook

I am hoping to use Facebook to log into my application. The user is given 2 options, either he/she could log in using FB or else by registering with the system and login in to the application.
I browsed through the FB Graph API, and downloaded there sample application. It showed how to post a note to my wall. SO when i click on the Facebook button, i sign-in and then the page gets re-directed to the post-to wall view.
What i want to do is, to only Login to Facebook (Not Post to Wall). Is this possible ? Is there any tutorial or sample code which would help me do this ?
Facebook's Javascript SDK provides a method called FB.login that will do what you want.
What you want is the Facebook iOS SDK, specifically the Authentication section, for a native iOS app.