Facebook Login: App not setup: this app is still in development mode - facebook

When I try to use Facebook login during development I have this message appear in the web browser.

First, I got added to the Facebook app. This could solve the problem but I was still seeing this message. What I came to find was that I had previously signed into a different Facebook on the simulator I was testing on. After going to Safari and logging into the account associated with the Facebook app everything worked as planned.

Related

Ionic facebook login: getting this app is still in development mode While I set it in live mode

I am developing an ionic app. Used facebook login, I set my facebook app into live mode, my app is running as a charm on website, but on my android device it is giving the well known error (this app is still in development mode ...). I have no facebook data access except the default public data and email, which, as I know, do not need app review.
I have double checked app id, app secret from firebase. But I am wondering if it could be because of an error in the key hash.
I have 24 or more tabs opened on my chrome searchin for the same error, all of such cases have not set the app into live mode.
Any help is appreciated
The app is live.
I have checked every thing, and everything was correct, facebook app id in packages.json is the same as in the facebook console. (It was different and I have corrected it earlier).
I found the old facebook-app-id in the files platforms\android\android.json and platforms\android\app\src\main\res\values\facebookconnect.xml.
Changed it to the actual facebook app id.

"App not setup: This app is still in development mode" Ionic 4 Facebook login

I Created my Ionic 4 app with facebook login
everything is fine expect when I make login with facebook
I got thes message "App not setuo: This app is still in development mode"
and my app is already in live mode
I don't know if this is a facebook bug or something wrong with my app?
If app is live mode, check if the app id in packages.json is the same as that in the facebook console.
If so, then check it in both files: platforms\android\android.json and platforms\android\app\src\main\res\values\facebookconnect.xml. If you have changed it before, sometimes it dont get changed in these files.
I solved it by removing the platform and added it again

App request doesn't work in iPhone browser but works in Facebook application

I'm sending an application request from my iPhone application and want the user to be redirected to the App Store page when he accepts the request.
In the application settings I've added the "App on Facebook" item with fake Canvas URLs besides "Native iOS App" in order to see the requests (they don't appear with no Canvas URL). Everything works fine in Facebook application on iPhone/iPad but doesn't work in the Safari browser on the device.
The request doesn't bring the appstore but open the error page:
Error
Sorry, the application you were using is experiencing a problem. Please try again later.
I've seen some other apps which works fine: request being clicked in the browser brings appstore. So guess something is missing in app settings or similar. Any clues?
Have you tried using your app store link as a URL?

How to go to my new Facebook App

I'm testing out writing mobile web app that connects to Facebook.
I follow this guide here and created a app on facebook, and uploaded the code to my own server.
https://developers.facebook.com/docs/guides/mobile/web/
But then, I got to the point where it tells me to search for my own app in facebook.com. My app won't show up, and I found out they won't until you have some users and then it'll be indexed.
So how do I get to my app?
Thanks
You might have your app settings (on the advanced screen: https://developers.facebook.com/apps/APPID/advanced) set to either sandbox mode enabled or Social discover disabled.

iOS Facebook connect not working when user has FB's app installed? [duplicate]

This question already has answers here:
iOS: Connect to Facebook without leaving the app for authorization
(2 answers)
Closed 2 years ago.
Has anyone else had this problem? I'm getting this error when trying to authorize a user via FB, I think I've isolated it only when a user has installed the Facebook app:
fb_our_appID://authorize#error=unknown%5Ferror
If you delete the FB app from the user's phone, our app will then try to authenticate via Safari, and everything works fine.
Thanks so much.
Yup, we were getting this as well.
It occurs when your bundle identifier does not match the one configured as part of your facebook application. Copy your bundle-id from your plist, and update the iOS Bundle ID value on facebook
https://developers.facebook.com/apps/_YOUR_APP_ID_/summary
PS: Check out facebook.stackoverflow.com for good facebook help.
I got the same issue. I Removed the facebook app from the phone and it started to work again.
I then installed the facebook app and my app kept working.
So looks like it only works fine if the app is installed before the facebook app and leads me to think it is a facebook app problem.
I didn't tried with Safari, but I had the same error message from facebook app.
My problem was from my application bundle, which must be exactly the same as in your facebook app configuration (first field of facebook iOS app configuration).
Make sure your application bundle id is set correctly on your app's Facebook page.
check out this answer
Authentication Fails with Facebook App Installed (iOS)
for reference.