Reputation: 529
I am writing a Facebook application that needs to post on a friend's wall on behalf of a user, but out of the scope of a canvas application. I have the following:
This should theoretically be enough to do what I want to. What I am currently doing:
However, this ends up posting on the friend's wall as the friend rather than the user (the app also has publish_stream permissions for the friend). This isn't too unexpected, as nowhere in this process have I specified who the poster should be.
My question is: Is it possible to obtain an OAuth token for an application representing a user? If not, is there any way to post on user's friend's wall outside the scope of a canvas application?
Thanks,
Ashoat
Upvotes: 1
Views: 6131
Reputation: 45
Use below code for posting on friends wall:
NSMutableDictionary *paramspost = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"My test app", @"name",
@"http://www.google.com", @"link",
@"FBTestApp app for iPhone!", @"caption",
@"This is a description of my app", @"description",
@"Hello!\n\nThis is a test message\nfrom my test iPhone app!", @"message",
nil];
// Publish.
// This is the most important method that you call. It does the actual job, the message posting.
[ facebook requestWithGraphPath:@"100001433267690/feed" andParams:paramspost andHttpMethod:@"POST" andDelegate:self];
where "100001433267690" should be your friends userid in facebook
Upvotes: 3
Reputation: 529
Actually, I think I've figured out the answer here. I don't think that there's a way to do it in the new OAuth API, but there does seem to be a way with the older REST API. See the documentation here.
Simply replace step 2 in my question with the above documentation, still using the OAuth token from step 1, and you should be good :)
Upvotes: 2