I am using the facebook C# SDK, v5.0.3. I develop a silverlight application. If my code asks an invalid or unauthorized graph request, for example : http://graph.facebook.com/me/Idonotexists

Facebook returns a "not found" message. Upon that "not found" message, the Facebook C# SDK, in the method FacebookClient:ResponseCallback() throws an exception.

The exception is not catched anywhere and makes the silverlight app to die (IE shows a white empty page).

Is there anyway I can catch the exception? try and catch my request fb.GetAsync(pathBox.Text, parameters, get_data_callback) doesn't work, as it's thrown just before the callback.

The following addition is a functional workaround the issue but it's far from a best practice:

private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) 
 { 
    e.Handled = true; // do this to prevent white page
 } 
link|improve this question
feedback

1 Answer

Basically it throws OAuthException so all we have to do is catch it.

Well I think this can be caught by Following code .I think It Should work.Tell me does that work?

app.GetAsync("me/photo", (friends) =>
            {                    
                    if (friends.Error == null)
                    {
                        dynamic news = friends.Result;
                    }
            }
link|improve this answer
It doesn't work. I'd guess that the GetAsync method being asynchroneous, the catch sentence is long gone by when the exception is thrown? – blelem Mar 14 '11 at 18:00
Well what do you want to reterive? pictures ablums what? – Afnan Bashir Mar 14 '11 at 18:17
It doesn't really matter what I want to retreive. I am expecting that the SDK is robust enough that if I ask a stupid request, it doesn't make the whole application crash, it just callsme back nicely telling me that there was an error. I can easily comment out the exception thrown in FacebookClient:ResponseCallback(), but I'd much prefer to use the SDK as such. – blelem Mar 14 '11 at 18:24
well not sure but see the updated reply.leme check my self check after some time updated reply – Afnan Bashir Mar 14 '11 at 18:25
Updated the answer Please see.It will not crash and if you want know error just show it in messagebox or what ever you want.Does that helps – Afnan Bashir Mar 14 '11 at 18:38
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.