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've created an app that I'm going to be using as an iframe app for a tab inside my company's facebook page. On my side of things I've got a MVC 2 web app. I have two Views one that I want to display if the user already likes the page, and another when they don't. I've been looking at this entry which pretty much describes my issue.

Read OAuth2.0 Signed_Request Facebook Registration C# MVC

In the signed_request there is a page property which contains a boolean names liked which is the item I need to check. In the answer Nathan says you can use the SDK to not have to do it 'manually'. My question is how. I've got the SDK and I'm trying in ernest to figure out how to get the data I need out and also whether I need to decorate my Actions with any attributes?

Hoping someone can shed some light on this.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use the CanvasContext object like this:

dynamic data = CanvasContext.Current.SignedRequest.Data
if (data.page.liked) {
 // has liked
} else {
 // Not liked
}
share|improve this answer
Do I need to import another namespace (other than Facebook, Facebook.Web & Facebook.Web.Mvc) or decorate the method with an attribute? I'm getting a CanvasContext does not exist in the current context build error and it's not recognising it in Visual Studio. :s – lloydphillips Mar 18 '11 at 13:38

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.