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 an Android App which writes to a Facebook-Users Story-Line.

To look, if some friends have liked oder comment it, i have a BroadcastReceiver which checks it.

Few weeks ago, everything has works fine. The Receiver send an Request, an gets the likes and counts. But as i tested it yesterday, the response tells me an error.

Here the Code and the Error-Warning. Hope someone can help me.

Bundle parameters = new Bundle();
        parameters.putString("id", post.getFacebookId());
        parameters.putString("fields", "likes, comments");
        LoggingHelper.i(LOG_TAG, post.toString());

        if(session != null){
            LoggingHelper.i(LOG_TAG, "Session ist nicht null");
            Request request = new com.facebook.Request(session, "", parameters, HttpMethod.GET, new Request.Callback() {
                @Override
                public void onCompleted(Response response) {
                    FacebookRequestError error = response.getError();
                    if(error == null){
                                            ...
                     }
                }
          } else {
             LoggingHelper.i(LOG_TAG, "Error-Code: " + error.getErrorCode() + "\nError-Message: " + error.getErrorMessage() + "\nError-Type:" + error.getErrorType()
          }
         ...

The Warning: Error-Code: 100, Unsupported get Request, GraphMethodException

share|improve this question

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.