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 have tried FBConnect for iPhone and am able to create/manage sessions and upload pictures successfully. What I can't sort out is, how to create and edit notes.

The Facebook documentation says that notes.create query takes three arguments:title, content and uid. It seems I am unable to form the right request for the required query.

Please help me on this. Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

Did some quick research on FBConnect. There may be more required parameters but to answer your question about generating the right query...

You need to create an NSDictionary to send parameters to Facebook. So in your case you need something like:

    NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: aTitle, @"title", aContent, @"content", uid, @"uid"];

and then send it off to Facebook with something like:

    [[FBRequest requestWithDelegate:self] call:@"facebook.Notes.create" params:params];
share|improve this answer
Thanks Greg. I got the result from your solution. I had some problem with the uid parameter, but I solved it by removing it altogether ;) – Vin Mar 22 '10 at 11:34

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.