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'm trying to create test users for my Facebook application using the Facebook C# SDK.

Not too sure if I'm going about it the right way but here's the code I'm executing...

FacebookClient client = new FacebookClient(FacebookApplication.Current);
String url = String.Format("/{0}/accounts/test-users", FacebookApplication.Current.AppId);

IDictionary<string, object> userParams = new Dictionary<string, object>();
userParams["installed"] = "true";
userParams["permissions"] = "read_stream";
userParams["access_token"] = AccessToken;

dynamic fbResults = client.Post(url, userParams);

I'm receiving an exception...

(OAuthException) (#15) The method you are calling must be called with an app secret signed session
share|improve this question

1 Answer

up vote 3 down vote accepted

Remove userParams["access_token"] = AccessToken;

var fb = new FacebookClient(appId, appSecret);
dynamic result = fb.Post(string.Format("{0}/accounts/test-users", appId),
    new { installed = true, permissions = "read_stream" });
Console.WriteLine(result);
share|improve this answer
Thanks for the assistance. Probably should have tried that...! – Sambo May 5 '11 at 14:04
I tried doing the same thing but I kept getting that error anyway! Why does that happen?! Check it out please: stackoverflow.com/questions/5990051/… – Kassem May 13 '11 at 19:37

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.