Post to Facebook custom wall using Facebook.dll in WP7

How to post to a user's wall in facebook using Facebook.dll in WP7. I found one method called PostAsync (), but could not understand the parameters. Any help would be appreciated. Thanks

+5
source share
2 answers

Finally, successfully completed the posting using the following code: -

var args = new Dictionary<string, object>();
 args["name"] = "Check this out";
 args["link"] = "www.xyz.com";
 args["caption"] = "";
 args["description"] = "description";
 args["picture"] = "";
 args["message"] = "Check this out";
 args["actions"] = "";

FacebookAsyncCallback callBack = new FacebookAsyncCallback(this.postResult);
 fbApp.PostAsync("me/feed", args, callBack);  

    private void postResult(FacebookAsyncResult asyncResult)
    {
        System.Diagnostics.Debug.WriteLine(asyncResult);
    }
+9
source

If you use the Facebook C # SDK, you can find their docs here: http://csharpsdk.org/docs/

+4
source

All Articles