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.

It took me some time, but I managed to get to the last point in real time updates, the challenge.

I know that when subscribing Facebook should ping my server, the problem is that it never happens, I always get the same response back:

{"error":{"type":"OAuthException","message":"(#2201) response does not match challenge, expected value = '1506372182', received=''"}}

It looks like it is able to connect to my server (every other callback url fails with address not available), however I don't see it calling me in the logs.

I'm using app engine:

public void doGet(HttpServletRequest req, HttpServletResponse resp)
    throws IOException {
...

else if (parameters.containsKey("hub.mode")) {
            log.info("doing hub.mode");
            // Check that challenge is valid.
            if (parameters.get("hub_verify_token").equals(Constants.FACEBOOK_VERIFY_TOKEN)) {
                log.info("hub.mode test is valid");
                resp.setContentType("text/plain");
                resp.getWriter().print(req.getParameter("hub.challenge"));
            }

        }
...


// I want real time information on a specific user, on its feeds.
        String data = URLEncoder.encode("object", "UTF-8") + "="
                + URLEncoder.encode("user", "UTF-8");
        data += "&" + URLEncoder.encode("fields", "UTF-8") + "="
                + URLEncoder.encode("feed", "UTF-8");
        // Send real time updates to this URL.
        data += "&" + URLEncoder.encode("callback_url", "UTF-8") + "="
                + URLEncoder.encode(reconstructedURL.toString(), "UTF-8");
        // A token used to verify that it is actually me who is running the verification process.
        data += "&" + URLEncoder.encode("verify_token", "UTF-8") + "="
                + URLEncoder.encode(Constants.FACEBOOK_VERIFY_TOKEN, "UTF-8");
        data += "&"
                + URLEncoder.encode("access_token", "UTF-8")
                + "="
                +Constants.FACEBOOK_APP_CODE + "|"
                        + Constants.FACEBOOK_APP_SECRET;
        // Subscribe by doing a post.
        URL url = new URL(String.format(
                "https://graph.facebook.com/%s/subscriptions?access_token=%s",
                Constants.FACEBOOK_APP_CODE, accessToken));
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        conn.setDoInput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        log.info(String.format("Sent the following data '%s'", data));
        wr.write(data);
        wr.flush();

I'm handling both the user authentication and real time subscription in the same servlet.

When reading back the response I'm getting the above error and I don't see any call to my servlet (in the app engine logs). I'm sure I'm missing something.

Any help will be appreciated.

share|improve this question
Ok, solved. The problem was with the permissions in web.xml, Facebook couldn't reach my page. – Efi MK Jun 8 '11 at 22:59
1  
You should post that as an answer to your own question. – Nick Johnson Jun 9 '11 at 1:42

2 Answers

I'd ensure that Facebook can really hit your website. Once you get that part figured out, then you can use server logs to check for traffic and your error logs for anything programming related.

share|improve this answer
See my comment above. – Efi MK Jan 6 '12 at 21:47
Ok, kewl. You probably should close out this question so it doesn't stay on the open question list. – DMCS Jan 6 '12 at 22:07
up vote 1 down vote accepted

Ok, solved. The problem was with the permissions in web.xml, Facebook couldn't reach my page.

share|improve this answer

protected by Community Apr 8 at 6:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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