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 written a vb.net desktop application for pipe collectors and one of the requests that seems popular is to be able to post pipe details (text) and an image of the pipe onto the user's facebook wall.

Basically the user will bring up their pipe details of choice and be able to click a 'Post To Wall" button which would then post the pipe details onto their wall.

If anyone can help it would be much appreciated.

Thanks in advance.

share|improve this question
What do you want help with? From what I'm seeing, you want someone to give you the code in vb.NET so you can make a desktop application. – nmagerko Jan 11 '12 at 3:46

closed as not a real question by Mitch Wheat, Ken White, BK., VMAtm, Robert Harvey Jan 11 '12 at 19:59

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.

1 Answer

Yes, it's fairly straight forward to do so.

  1. you will need a SDK for .Net. You can use the C# SDK, don't worry, just use the client DLLs and it will work fine with you VB.net app. See: http://facebooksdk.codeplex.com/
  2. You will need to set and configure a facebook APP. See: https://developers.facebook.com/apps
  3. You will need to then authenticate the user with publish_stream permissions. See the C# SDK for details.
  4. With that user's access token new up the api var api = new Facebook.FacebookClient(userAccessToken);
  5. Load up the parameters object with a name value pair of message: "{the users text}"
  6. Call api.Post("me/feed",parameters);

Once that works, then you can move onto specifying the image.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 21:04

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