我在Windows Phone上使用Facebook的SDK(Codeplex上)7.的Facebook SDK在Windows Phone 7投(OAuthException)(#210)用戶不可見
當我嘗試在留言板寫,我得到這個例外提高((OAuthException)(#210)用戶不可見)
下面是我的查詢
private string requestedFbPermissions = "user_about_me,publish_stream";
//
var parms = new Dictionary<String, object>();
parms["display"] = "touch";
parms["client_id"] = apiKey;
parms["scope"] = requestedFbPermissions;
parms["type"] = "user_agent";
try
{
string feedRequest = selectedUID + "/feed?message=\'Test Msg\'";
fbApp.PostAsync(feedRequest, parms, (value) =>
{
object result = value.Result;
JObject stuff = JObject.Parse(value.Result.ToString());
}
}
我失去的東西,對於一些朋友,我能夠在牆上寫成功。
你可能想要參考http://stackoverflow.com/questions/4703365/error-201-user-not-visible-in-facebook-api – prabir 2011-04-20 13:10:00