I'm using the C# SDK to post an event. I've filled out basic event parameters, and have tested these parameters with the Graph API explorer. When I call PostTaskAsync, however:
var parameters = new Dictionary<string, string>
{
{ "name", "Random" },
{ "start_time", "2012-11-11" },
};
fb.PostTaskAsync("me/events", parameters);
I'm hit with a TargetParameterCountException. Can anyone explain what I'm doing wrong?