| Steps to Reproduce: | I happen to be using a page's access token, but I see the same problem for standard user access tokens as well. In the repro, I am trying to tag Place - http://www.facebook.com/pages/Palo-Alto-California/104022926303756 User - http://www.facebook.com/profile.php?id=100002423995714 and I'm following the documentation here on posts: http://developers.facebook.com/docs/reference/api/user/ -------------------------------------------------------- 1) Post with "tags" but without "place". API complains as expected. INFO: Executing a POST to https://graph.facebook.com/me/feed with parameters (sent in request body): name=Testing+TAGS+ONLY&description=I+wouldn%27t+expect+to+see+anything+different INFO: Facebook responded with HTTP status code 400 and response body: {"error":{"message":"(#100) Cannot specify user tags without a place tag","type":"OAuthException","code":100}} Exception in thread "main" com.restfb.exception.FacebookOAuthException: Received Facebook error response of type OAuthException: (#100) Cannot specify user tags without a place tag 2) Post with "tags" and "place". API returns 200. Post has neither. INFO: Executing a POST to https://graph.facebook.com/me/feed with parameters (sent in request body): name=Testing+PLACE+AND+TAGS&description=I+wouldn%27t+expect+to+see+anything+diff INFO: Facebook responded with HTTP status code 200 and response body: {"id":"353529131334585_410885398932291"} http://graph.facebook.com/353529131334585_410885398932291 http://www.facebook.com/homsarwalkerthepage/posts/410885398932291 3) Post with "place". API returns 200. Post doesn't have it. INFO: Executing a POST to https://graph.facebook.com/me/feed with parameters (sent in request body): name=Testing+PLACES+ONLY&description=I+wouldn%27t+expect+to+see+anything+differe INFO: Facebook responded with HTTP status code 200 and response body: {"id":"353529131334585_410883608932470"} http://graph.facebook.com/353529131334585_410883608932470 http://www.facebook.com/homsarwalkerthepage/posts/410883608932470 |
|---|---|
| Expected Behavior: | Posts in 2) and 3) have the tags / places. |
| Actual Behavior: | Posts in 2) and 3) don't have tags or places. |