Could not deserialize data returned from server

If you should happen to see this error when calling Users.GetInfo() it's because facebook changed something in the way their hs_info is passed down and the C# API is not expecting nullable values.

Here is the fix:

recompile the binaries from source with the following members and their referencing properties set to set to int?

These are members of > Facebook.Schema.hs_info

private int? grad_yearField;
private int? hs1_idField;
private int? hs2_idField;

If you don't have the capability or need to get your site running ASAP.. i've attached the binaries with this change already compiled in.

~Lucas Smolic

File Attachments
recompiled_binaries.zip
Xsd2CodeSource.cs

http://facebooktoolkit.codeplex.com/WorkItem/View.aspx?WorkItemId=17036

search this blog (most likely not here)