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.

There is no document on how to use Facebook C# SDK(http://facebooksdk.codeplex.com/) and I am trying to use FacebookSignedRequest.Parse method but it shows and error that its not defined . How do I use it ? I also need to extract values from signed request.

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

This is how i do it to extract the signed request..

FacebookSignedRequest fbsign = FacebookSignedRequest.Parse(appsecret, Request.Form["signed_request"]);

And then assign it to a dynamic

dynamic result = fbsign.Data;
share|improve this answer
CS0117: 'Facebook.FacebookSignedRequest' does not contain a definition for 'Parse' – Pit Digger May 23 '11 at 2:45
which version of the sdk are u using? – yulun May 23 '11 at 3:34
The latest from code plex which is 5.0.25 . I opned FacebookSignedRequest class and I dont even see that method as part of the code.Although I see a ParseSignedRequest method as part of FacebookApp . – Pit Digger May 23 '11 at 19:15

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.