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

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

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.

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

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.

App is misconfigured for Facebook login IOS Facebook app installed

I saw this linkenter link description here
But it doesn't solve my problem.
I downloaded the latest Facebook sdk 3.1.1
The original SessionLoginSample provided with sdk works fine.
I made the following changes and the result is: App is misconfigured for Facebook login
Where is my mistake?
I created a new sample Facebook app following step by step the Facebook doc:
Facebook App Image on Flickr
I loaded in xCode the original SessionLoginSample and I changed only the bundleId and the Facebook ID:
xCode plist image on flickr
i experienced the same problem many times.
First make sure you have your Facebookappid set in your property list correctly.
Then go to facebook account settings and delete your ios app from applications.
then go to developer settings of facebook for your ios app.Make sure the app id is correct and also make sure that the bundle identifier is also same as your propertylist in xcode.It should be working afterwards
UPDATED : You do not need to delete the app.Try delete the app from your Facebook settings first.Then go to your Facebook app on iOS and log out.Remove your own app from the device and reinstall (without loving in to your account).Then you try to connect from your own app Facebook will prompt and ak your username and password and it will not return to your app.You clsoe the app and return to your own app manually.When you try to connect again in your own app FB it will ask you for permissions.
I reproduced the problem somehow and fixed like this.
By the way i also set the App Type: setting in advanded settings to Native/Dssktop.
Make sure you configured your app properly as per the following guidelines https://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/3.1/ Check whether you bundle id is as per you configured in the Native ios settings of app configuration.

Trigger.io Facebook.Authorize

I'm attempting Facebook Single Sign On with Trigger.IO and when testing with the IOS simulator the following happens:
Facebook Dialogue Opens
User Logs In
User Authorizes App
User clicks Okay to return to the native app.
At step 4 the following Safari notification is displayed and the app is never reloaded:
"Cannot Open Page"
"Safari Cannot Open the Page because the address is invalid"
As far as I can tell my APP ID is correct as the process would never make it to step 4 otherwise. My Facebook app is set up with the following details:
Native iOS App
SSO enabled.
No idea what I'm missing here but any help would be greatly appreciated! I've found answers to similar issues with native apps where the Facebook APP ID should be prepended with "fb", in the plist. But nothing related to trigger.IO
This was a regression in v1.4.10 that we fixed in v1.4.11 - if you've got:
"platform_version": "v1.4",
In your application configuration, you'll pick up the fix automatically.

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.