tags:

views:

3832

answers:

3

Does anyone have experience using the Facebook Developer Toolkit? I am trying to post something to a Facebook user's Wall, but can't figure out how to use the API? Could someone could give me an example or point me to some documentation on the API's usage?

A: 

Facebook Developer Wiki

Jesse
Is there a specific article you could link to instead? That might be more useful.
overslacked
A link to the wiki and nothing else is hardly helpful. I figured that much out on my own.
jamesaharvey
+1  A: 

I actually found documentation and samples to do what I was looking for here: http://facebooktoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28001

EDIT:
After initializing the Facebook session I called the Stream.Publish() method on the API.

FacebookService.API.stream.publish(...);
jamesaharvey
I have been messing around with the new 3.0 version. I am not able to connect. Can you post some of your connection code?
Dustin Laine
A: 

Bit late, but maybe it still helps others: http://facebooktoolkit.codeplex.com/Thread/View.aspx?ThreadId=75412

H789