从 C# 代码隐藏邀请朋友使用我的应用程序

发布于 2024-12-18 15:42:50 字数 745 浏览 1 评论 0原文

我知道如何使用以下 javascript 邀请朋友加入我的应用程序:

function sendRequestToManyRecipients() {
    FB.ui({method: 'apprequests',
           message: 'My Great Request'
    }, requestCallback);
  }

我正在使用以下 c# 代码

var fb = new FacebookClient(FacebookSettings.AppId, FacebookSettings.AppSecret);
dynamic parameters = new ExpandoObject();
parameters.to = string.Join(",", friendIDs);
parameters.message = "test vanuit codebehind";
parameters.to = [USERID];

try
{
    dynamic result = fb.Post("/apprequests", parameters);
}
catch (FacebookApiException ex)
{
    string msg = ex.Message;
}

,但出现以下错误:“(GraphMethodException) 不支持的发布请求。”

有人知道我做错了什么吗?

编辑:我正在使用 C# Facebook SDK 5.3.2.0

I know how to invite friends to my app using the following javascript:

function sendRequestToManyRecipients() {
    FB.ui({method: 'apprequests',
           message: 'My Great Request'
    }, requestCallback);
  }

I'm using the following c# code

var fb = new FacebookClient(FacebookSettings.AppId, FacebookSettings.AppSecret);
dynamic parameters = new ExpandoObject();
parameters.to = string.Join(",", friendIDs);
parameters.message = "test vanuit codebehind";
parameters.to = [USERID];

try
{
    dynamic result = fb.Post("/apprequests", parameters);
}
catch (FacebookApiException ex)
{
    string msg = ex.Message;
}

But I get the following error: "(GraphMethodException) Unsupported post request."

Does anybody know what I'm doing wrong?

EDIT: Im'm using the C# Facebook SDK 5.3.2.0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文