Android wall post update not working if Facebook app is installed - android-emulator

I have developed an application which posts wall post update on the Facebook. But the problem is if the Facebook app is already installed on the device, It's not working. But I tried in emulator without the Facebook app installed in it and it works fine.

1 for the activitycode parameter in the authorize method. This will force user to login disabling SSO. I solved the same issue by doing the same....

Related

Facebook login disabled for IONIC Cordova app

I tried to login FB using facebook native plugin, I'm facing login issue for using old webview sdk for facebook ,I even have facebook app installed on my device.
I tried many solutions can't resolve can any one help me to resolve this.

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.

Facebook sdk 3.0 at android another user cannot login

I'm making android application which is related with Facebook.
My application had succeed at logging on Facebook version 3.0 sdk.
However, the problem is that user who can log on this application is only me.
This means that nobody can log on my application.
How can I handle this problem?
In your Developer Settings of your app at Facebook, change Sandbox Mode to Off

facebook app doesn't auth for my app

I have a problem to connect facebook app with my app.
I don't know much about facebook sdk, so I simply copy & paste from the facebook sample app.
(i only need upload image with some text).
it works well unless facebook app is installed on the device, but if a device has facebook app, it seems like can't get the login information.
I think it is because of facebook app doesn't ask auth for my app unlike safari browser.
What do I have to do?
Please Download the latest version of Facebook app (4.1.1) from app store. The Single Sign On(SSO) only supports in the latest version of Facebook application.

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.