facebook / facebook-ios-sdk

Used to integrate the Facebook Platform with your iOS & tvOS apps.

Home Page:https://developers.facebook.com/docs/ios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Limited Login - Cancelled status to SignIn

miettievino opened this issue · comments

Checklist before submitting a bug report

Xcode version

15.3

Facebook iOS SDK version

17.0.0

Dependency Manager

CocoaPods

SDK Framework

Login

Goals

Login for all users

Expected results

That both test users and regular users to be handled correctly when the app is live.

Actual results

keep getting a cancellation returned when trying to use the new login method for limited login, only for non test users.

Steps to reproduce

Try make a login with a Facebook Account

Code samples & details

self?.loginManager.logIn(configuration: configuration) { result in
                switch result {
                case .cancelled:
                    continuation.resume(throwing: Cancelation()) <--- hits every time I try login from a non tester account
                }
            }

We have the same issue? Has anyone found solution for this?

Same issue

Same issue exist in here
#2387