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 successfully posted an image along with text to a Facebook Wall using the old Fbconnect Api. But Now The Old Fbconnect Api doesn't work for me. Here is my code that I'm using. Download I integrated the new Fbconnect api from a different tutorial but I cannot get it to work. I have three problems with this sample code.

  1. How to integrate New Fbconnect Api .
  2. How to post an image along With text On user's Facebook Wall as I am using in this sample code.
  3. How to post an image along With text On specific Friend's Facebook Wall.

But I request to all who want to help me to please use my code to make all Changes. Any help will be appriated .Thanx in advance.

share|improve this question
50 points isn't really a big payoff for custom code. – Abizern Jul 12 '12 at 20:57

closed as not a real question by casperOne Jul 13 '12 at 15:06

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted

You can use the grapAPI of FB to post images on FB wall This is the easiest way to dol this Use this link to implement it.

Happy Coding :)

share|improve this answer
thanx @Aalok Parikh for helping me.please Check my Edit. – Bob Apple Jul 3 '12 at 7:50

Try this

NSURL *url = [NSURL URLWithString:@"YOur Image url"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img  = [[UIImage alloc] initWithData:data];

[variables setObject:img forKey:@"picture"];

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"/me/photos" withPostVars:variables];

share|improve this answer
thanx @elppa for helping me.please Check my Edit. – Bob Apple Jul 3 '12 at 7:48
use my code..and check again – Deepesh Jul 3 '12 at 7:59

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