description
I'm trying to upgrade my Toolkit 2.1 app to 3.0, and I can't figure out how to get FQL to work. I keep getting the following error:
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 292: strQuery = "select uid, name, pic from user where uid " + inStmt;
Line 293: Facebook.Rest.Fql q = new Facebook.Rest.Fql(Master.Api.Session);
Line 294: string result = q.Query(strQuery);
The 'q' variable is non-null.
Any ideas??