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 developed an app for Facebook Fanpage. It's working pretty well. When I view my Facebook fanpage app by web browser, I can get the signed_request parameter in my POST method:

@RequestMapping(value = "/facebook/competition**", method = RequestMethod.POST)
public ModelAndView facebookPost(HttpServletRequest request)
throws SAXException,IOException,
ParserConfigurationException {

logger.info("FACEBOOK SIGNED REQUEST POST: " +  
request.getParameter("signed_request"));    

But when I view my fanpage app by Facebook app for IPAD, looks like the request goes into the GET method and signed_request value is null.

@RequestMapping(value = "/facebook/competition**", method = RequestMethod.GET)
public ModelAndView facebookGet(HttpServletRequest request)
throws SAXException,IOException,
ParserConfigurationException {

logger.info("FACEBOOK SIGNED REQUEST GET: " +  
request.getParameter("signed_request"));

Do you know why this doesn't go into my POST method?

Many thanks,

share|improve this question
“Do you know why this doesn't go into my POST method?” – presumably because it is not a POST request …? – CBroe Aug 15 '12 at 10:15
But Facebook makes sure that they will call the POST method. – Erinna White Aug 16 '12 at 1:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.