Problems with fbDidLogin never called iOS

前端 未结 6 1475
死守一世寂寞
死守一世寂寞 2021-01-22 02:18

I\'m having problems with my app saving the access_token. The problem is, when an iPhone hasn\'t the Facebook app installed, safari will handle this and there is no problem. But

6条回答
  •  青春惊慌失措
    2021-01-22 03:19

    The lines: [self authorizeWithFBAppAuth:YES safariAuth:YES];

    being changed to

    [self authorizeWithFBAppAuth:NO safariAuth:YES];

    is possible only when we have access to Facebook.m (since that's where one would have to make a change)

    In case we're using Facebook's latest static library, we don't get access to the the .m file. In that case how would we be able to achieve the same functionality?

提交回复
热议问题