0
votes

While using facebook sdk in unity after i logged in for the first time. When ever i try to login and play the game again it keeps showing this "you have already authorized this app" dialog. I have click ok there to continue. How can i avoid this?

public void Login)
{
    FB.Login("email,public_profile,user_friends");
}

That is the piece of code i use to login.

1

1 Answers

1
votes

I guess this happens when you are already logged in Can you try put it in If(FB.IsLoggedIn)? Tell me how does it turn out 😜