I'm trying to implement like in the open-graph API for facebook. I've created a like on the facebook admin page.
I'm logged in on the device with the same account that is the admin for the app on Facebook. There is a valid token in the application, I have the right permissions. I've also added the necessary tags on each page that is going to be liked.
This is the code snippet that's trying to post:
[appDelegate.facebook requestWithGraphPath:@"me/app_namespace:like" andParams:md andHttpMethod:@"POST" andDelegate:appDelegate];
The error message I'm getting is:
code = 2500;
message = "Unknown path components: /guidepal:like";
type = OAuthException;
What could the problem be?