Giter Site home page Giter Site logo

Comments (3)

yujuan avatar yujuan commented on April 26, 2024

This -999 is an error generated from Apple's sdk. In an iPhone connect, especially when the network is slow, after the login web view is loaded and people input their user name and password, the user is tended to click multiple times of "Login" button therefore the -999 error would be generated. There were many discussions about how to handle this error in different places such as
http://www.iphonedevsdk.com/forum/iphone-sdk-development/6280-uiwebview-didfailloadwitherror-how-get-errors-code-list.html
In this case, the best way to handle is to ignore the error and continue wait for the page to be loaded.

You can see in the FBLoginDialog, I have ignore this error as

  • (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
    if (!(([error.domain isEqualToString:@"NSURLErrorDomain"] && error.code == -999) ||
    ([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102))) {
    [super webView:webView didFailLoadWithError:error];
    if ([_loginDelegate respondsToSelector:@selector(fbDialogNotLogin:)]) {
    [_loginDelegate fbDialogNotLogin:NO];
    }
    }
    }

from facebook-ios-sdk.

t1amir avatar t1amir commented on April 26, 2024

it seems that, no matter of how long i am waiting nothing happens.
i also tried to run the test project in here with the same results, no facebook login.

can someone assist ?

Tamir

from facebook-ios-sdk.

kayluvsyahh avatar kayluvsyahh commented on April 26, 2024

same is happening to me and I have tried a number of times to login. I've also heard that this error is caused by people trying to login to an accoount that doesn't exist. But this isn't the case.

from facebook-ios-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.