I write an android application which does a FB like to a FB post.
I succeed in doing it, but after a long time I get this response:
{
  Response:  responseCode: 400, 
  graphObject: null, 
  error: 
        {
         HttpStatus: 400, 
         errorCode: 100, 
         errorType: OAuthException, 
         errorMessage: (#100) Error finding the requested story
        },
 isFromCache:false
}
for the code:
Request request = new Request(
        session,
        takeFromPublicMacrosOrServer(currentOffer.postId)
                + "/likes", null, HttpMethod.POST,
        new Request.Callback() {
            @Override
            public void onCompleted(Response response) {
                // Request complete
                if (response.getError() == null) {
                    UnlockRequestToServer unlockRequestToServer = new UnlockRequestToServer(
                            mOffersListActivity,
                            PublicMacros.TYPE_UNLOCK_FB_LIKE,
                            currentOffer.postId);
                } else {
                    final String errorMsg = "error: "
                            + response.getError()
                                    .toString();
                    Log.e(MyLogger.TAG, errorMsg);
                    if (BaseApplication
                            .getCurrentActivity() != null) {
                        BaseApplication
                                .getCurrentActivity()
                                .runOnUiThread(
                                        new Runnable() {
                                            public void run() {
                                                if (PublicMacros.DEBUG) {
                                                    Toast.makeText(
                                                            BaseApplication
                                                                    .getCurrentActivity(),
                                                            errorMsg,
                                                            Toast.LENGTH_LONG)
                                                            .show();
                                                }
                                            }
                                        });
                    }
                }
                String re = response.toString();
            }
        });
request.executeAsync();
Does someone know how long is postId valid for FB like action ?