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.

I have a minor problem in facebook c# sdk

I just want to get the facebook user id without asking for permissions , just from the signed request. Up to now i have written the code below:

        var current = new DefaultFacebookApplication { AppId ="***", AppSecret = "***" };

        dynamic signedRequest = FacebookSignedRequest.Parse(current, Request);


        var UserId = (string)signedRequest.Data.user.id;

My first question is :is that is possible? Is it possible to get the user id without oauth? Secondly , if it is possible is the (string)signedRequest.Data.user.id statement correct?;

share|improve this question

1 Answer

up vote 0 down vote accepted

You cannot get the Facebook user id from the signed_request unless they've authenticated your app. It is a privacy issue.

share|improve this answer
Well, i used the javascript api which worked fine. Thanks anyway! – mathew Jan 24 '12 at 19:57
Execellent, sometimes things don't have to be done on the server. Using the JS SDK for doing the auth is a quick way to get things done. Congrats :) – DMCS Jan 24 '12 at 22:52

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.