| Steps to Reproduce: | 1. Get an access token 2. Get status id of a friend's posting from your feed 3. Issue 'like' POST to like that status object. For example: curl -v -d "access_token=<access_token>" "https://graph.facebook.com/<status_id>/likes" 4. Note successful HTTP 200 OK status 5. Enable February 2013 breaking changes in app dashboard 6. Attempt to 'unlike' by issuing a DELETE request for the status id likes. For example: curl -v -X DELETE "https://graph.facebook.com/<post_id>/likes?access_token=<access_token>" 7. Note failed HTTP 403 Forbidden status 8. Disable February 2012 breaking changes in app dashboard 9. Attempt to unlike by issuing a DELETE request for the status id likes. For example: curl -v -X DELETE "https://graph.facebook.com/<post_id>/likes?access_token=<access_token>" 10. Note successful HTTP 200 OK status |
|---|---|
| Expected Behavior: | Should be able to unlike a friend's status after being able to like it -- before & after enabling February 2013 changes. |
| Actual Behavior: | Unable to unlike a friend's status after enabling February 2013 changes. |
| API/SDK: | Graph API |
| App IDs: |
|