Created By
Abir Ahmed
05/10/2012 7:04am

Subscribers (17)

BugsError finding requested story when trying to comment/like Event posts

  • Status: Fixed
  • Priority: Low
  • Updated: August 29, 2012 at 12:10pm
Latest response from Facebook
Jeff Bowen
This issue was resolved in June. Thanks for your patience.
Status changed to Fixed · August 29, 2012 at 12:10pm
Charles Wu
Thanks for the report. We are looking into this.
Status changed to Assigned · June 21, 2012 at 12:42pm
Jeff Bowen
Thanks for the report. We will follow up.
Status changed to Triaged · Priority changed to Low · May 11, 2012 at 11:32am
Subject
Graph API call and Rest API call for liking or commenting on Event Post are not working.

Description
To like or comment an Event Post, tried use the either the REST API or Graph API in the Graph explorer, they all returns the same error which says "(#100) Error finding the requested story"

API Call
REST API: stream.addLike;
stream.addComment

GRAPH: HTTP POST to EVENT_POST_ID/comments
HTTP POST to EVENT_POST_ID/likes

Web console check
Graph Exploerer

Competitor platform confirmation
N/A. Ipad is able to like/comment on the event post.

stream.addLike

Facebook DEBUG: Payload:

Content-Disposition: form-data;name="format"

JSON

--Part-Boundary

Content-Disposition: form-data;name="method"


facebook.stream.addLike

--Part-Boundary

Content-Disposition: form-data;name="post_id"


411932538827255_411932912160551

<-------End of add like payload-------------->


stream.addComment

Facebook DEBUG: Payload:

Content-Disposition: form-data;name="comment"

Hello

--Part-Boundary

Content-Disposition: form-data;name="format"

JSON

--Part-Boundary

Content-Disposition: form-data;name="method"

facebook.stream.addComment

--Part-Boundary

Content-Disposition: form-data;name="post_id"

411932538827255_411932912160551

--Part-Boundary

<-------End of add comment payload-------------->


Stream.addComment error:

{
"error_code": 100,
"error_msg": "Error finding the requested story",
"request_args": [
{
"key": "comment",
"value": "Hello"
},
{
"key": "format",
"value": "JSON"
},
{
"key": "method",
"value": "facebook.stream.addComment"
},
{
"key": "post_id",
"value": "411932538827255_411932912160551"
},
]
}


Stream.addLike error:

{
"error_code": 100,
"error_msg": "Error finding the requested story",
"request_args": [
{
"key": "format",
"value": "JSON"
},
{
"key": "method",
"value": "facebook.stream.addLike"
},
{
"key": "post_id",
"value": "411932538827255_411932912160551"
},
]
}

Graph API error
{
"error": {
"message": "(#100) Error finding the requested story",
"type": "OAuthException",
"code": 100
}
}
4 people can reproduce this issue by following these steps
Repro