从 C# 代码隐藏邀请朋友使用我的应用程序
我知道如何使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论