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 am Creating a library using Facebook C# SDK for windows phone.Facebook SDK Library version is 6.0.10.0. Facebook C# SDK contains asynchronous function calls only. In which there is a postCompleted event handler which takes object and FacebookApiEventArgs as arguments and return type is void.

I am using two classes one is UI class and other is Businesslogic class. from UI i want to call the BusinessLogic class(s) PostWall function which will simply return the last message id.

I want to create a function something like this

public string PostWall(string accessToken, string message)
{
    var fb = new FacebookClient(accessToken);

            fb.PostCompleted += (o, args) =>
            {
                if (args.Error != null)
                {                        
                    return;
                }
                var result = (IDictionary<string, object>)args.GetResultData();
                _lastMessageId = (string)result["id"];                        
            };

            var parameters = new Dictionary<string, object>();
            parameters["message"] = message;

            fb.PostAsync("me/feed", parameters);
}

I do not know how to implement this. Is this functionality achievable or not.

Any help appreciated Thanks in Advance

share|improve this question

1 Answer

you can check out the wp7 sample at at https://github.com/facebook-csharp-sdk/facebook-windows-phone-sample.

What you are doing is already correct.

share|improve this answer

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.