2

I have a question regarding ios Facebook SDK login process.

Just noticed that when I try to login into my app with facebook, Safari web browser is not detecting my installed Facebook app.
Only one of the devices did get screen like this.
On all other devices there is always juat a notification to download facebook app.
I'm testing my facebook login on a real device. I'm also login in into my facebook app.
Any ideas what am I doing wrong?

kerencic
  • 41
  • 1
  • 3

1 Answers1

0

it's just a basic login permission. how can i test "Log In With Facebook App" button from login if SDK does not show it?

FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init];
        [login logInWithReadPermissions: @[@"public_profile"] fromViewController:controller handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) {
            if (error) {
                NSLog(@"error");
            } else if (result.isCancelled) {
                 NSLog(@"isCancelled");
            } else {
              NSLog(@"got data");
            }
        }];
kerencic
  • 41
  • 1
  • 3