facebook api 异常 #100-C# 中的无效参数
facebook api exception #100-invalid parameter in c#
我正在开发 poster 软件,
当我尝试 post a link 它给出以下异常
facebook api 异常 #100-无效
这是我的代码
public static bool post(string accesstoken,string status,string link) {
try
{
FacebookClient fb = new FacebookClient(accesstoken);
Dictionary<string, object> postArgs = new Dictionary<string, object>();
postArgs["message"] = status;
if (link != "") {
postArgs["link"] = link;
MessageBox.Show(link);
}
fb.Post("/me/feed", postArgs);
return true;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
return false;
}
}
}
您应该检查 Stream post URL 安全选项 是否在您的应用程序的仪表板上,如果是则将其关闭:https://developers.facebook.com/apps,点击设置,然后点击迁移。
在 迁移 > 流 post URL 安全性 项目符号中查看更多信息:https://developers.facebook.com/docs/facebook-login/security#surfacearea
我正在开发 poster 软件, 当我尝试 post a link 它给出以下异常
facebook api 异常 #100-无效
这是我的代码
public static bool post(string accesstoken,string status,string link) {
try
{
FacebookClient fb = new FacebookClient(accesstoken);
Dictionary<string, object> postArgs = new Dictionary<string, object>();
postArgs["message"] = status;
if (link != "") {
postArgs["link"] = link;
MessageBox.Show(link);
}
fb.Post("/me/feed", postArgs);
return true;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
return false;
}
}
}
您应该检查 Stream post URL 安全选项 是否在您的应用程序的仪表板上,如果是则将其关闭:https://developers.facebook.com/apps,点击设置,然后点击迁移。
在 迁移 > 流 post URL 安全性 项目符号中查看更多信息:https://developers.facebook.com/docs/facebook-login/security#surfacearea