Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

registerCallback has never called #1215

Closed
5 tasks done
akardas16 opened this issue Oct 5, 2023 · 0 comments
Closed
5 tasks done

registerCallback has never called #1215

akardas16 opened this issue Oct 5, 2023 · 0 comments

Comments

@akardas16
Copy link

Checklist before submitting a bug report

Java version

JavaVersion.VERSION_17

Android version

13

Android SDK version

34

Installation platform & version

mavenCentral

Package

Core & AppEvents

Goals

Expect to get onSucces, onFail, or onCancel from registercalback

        callbackManager = create()
        LoginManager.getInstance().registerCallback(callbackManager,
            object : FacebookCallback<LoginResult> {
                override fun onSuccess(loginResult: LoginResult) {
                    // not calling
   
                }

                override fun onCancel() {
                   // not calling
                }

                override fun onError(exception: FacebookException) {
                  // not calling
                }
            })

Expected results

afasdasda dfgvdfgv

Actual results

Expect to get onSucces, onFail, or onCancel from registercalback

        callbackManager = create()
        LoginManager.getInstance().registerCallback(callbackManager,
            object : FacebookCallback<LoginResult> {
                override fun onSuccess(loginResult: LoginResult) {
                    // not calling
   
                }

                override fun onCancel() {
                   // not calling
                }

                override fun onError(exception: FacebookException) {
                  // not calling
                }
            })

Steps to reproduce

No response

Code samples & details

// INSERT YOUR CODE HERE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants
@akardas16 and others