Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to get the Facebook users id saved in my database but I got this error:

System.NullReferenceException: Object reference not set to an instance of an object.

Im using Newtonsoft.Json.Linq and the method SelectToken to get the "registration.id"

Here is the code:

string FB_ID= o.SelectToken("registration.id").ToString();
string FB_Firstname = o.SelectToken("registration.first_name").ToString(); 
string FB_Lastname = o.SelectToken("registration.last_name").ToString();

I can successfully get the Firstname and Lastname of the user but the string FB_ID gives me the Object reference not set to an instance of an object error.

share|improve this question

1 Answer

I do not know which FB library you are using (Facebook C# SDK does not have a SelectToken method)... but Facebook uses "uid" instead of "id".

So... you might need to use:

string FB_ID= o.SelectToken("registration.uid").ToString();

Hope it helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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