my problem is as follows: I have just migrated from using the Facebook C# API 4 -> v. 5.0.50 (as of 2011-07-11), therefore I had to change some lines of code and started using the FacebookWebClient instead of the former FacebookApp. I use this class to navigate the Graph API. I use the functionality inside a WCF service, which receives only the access_token as a parameter, which it passes to the FacebookWebClient.
Everything worked just fine under v.4, however after replacing and re-referencing the dlls the application started throwing the exception "The type initializer for 'Facebook.FacebookApplication' threw an exception."
The exception stack trace is:
at Facebook.FacebookClient..ctor(String accessToken) in e:\Prabir\Documents\Projects\facebooksdk\v5.0.50\Source\Facebook\FacebookClient.cs:line 48 at Facebook.Web.FacebookWebClient..ctor(String accessToken) in e:\Prabir\Documents\Projects\facebooksdk\v5.0.50\Source\Facebook.Web\FacebookWebClient.cs:line 36 at Korito.MyKorito.FetchKorito(String token) at Korito.MyKorito.KoritoAPI(String token) at SyncInvokeKoritoAPI(Object , Object[] , Object[] ) at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs) at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc) at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc& rpc) at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
I have referenced (only) the following dll-s:
- facebook.dll
- facebook.web.dll
- facebook.web.mvc.dll
the code segment is as follows:
var client = new Facebook.Web.FacebookWebClient("/*auth_token_received_as_a_parameter*/"); dynamic me = client.Get("/me");
I use the .net 4 framework.
Any assistance is much appreciated! Cheers, Alois