Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to post a message on all of my friends wall

Following is the code that ih ave found

 [_facebook requestWithGraphPath:@"friend_ID/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

The big problem is how can i get friend_id? is it their emails? Or how to get all lists of my friends ids

share|improve this question

1 Answer

up vote 2 down vote accepted
[_facebook requestWithGraphPath:@"me/friends" andDelegate:self];

will request the list of your friends, provided that you are correctly authenticated.

Then implement your delegate method in order to extract the id you need.

- (void)request:(FBRequest *)request didLoad:(id)result {
    items = result[@"data"];
    for (NSDictionary * friend in items) {
        long long friendId = [friend[@"id"] longLongValue];
        // Do something with the Id
    }
}
share|improve this answer
what is _Facebook in this casE? – Muhammad Umar Jan 28 at 2:23
what do you mean? – Gabriele Petronella Jan 28 at 2:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.