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