Facebook离线发布流到墙asp.net

Facebook离线发布流到墙asp.net,asp.net,facebook,facebook-c#-sdk,Asp.net,Facebook,Facebook C# Sdk,我正在使用facebook graph API获取登录用户令牌 此外,当任何用户登录到我的网站时,我会抓取这些facebook参数“发布流、电子邮件、离线访问” 如果我有100个用户登录了我的网站,我如何才能在他们的墙上发布一条离线消息,如果可能的话,也可以在他们的朋友墙上发布 如果可以的话,请告诉我?任何代码示例都会很棒。您可以在facebook开发者论坛上查看我的帖子: 我已使用此代码从此链接发布文章 发布后: var client = new FacebookClient("my_acc

我正在使用facebook graph API获取登录用户令牌

此外,当任何用户登录到我的网站时,我会抓取这些facebook参数“发布流、电子邮件、离线访问”

如果我有100个用户登录了我的网站,我如何才能在他们的墙上发布一条离线消息,如果可能的话,也可以在他们的朋友墙上发布


如果可以的话,请告诉我?任何代码示例都会很棒。

您可以在facebook开发者论坛上查看我的帖子:


我已使用此代码从此链接发布文章

发布后:

var client = new FacebookClient("my_access_token");
dynamic parameters = new ExpandoObject();
parameters.message = "Check out this funny article";
parameters.link = "http://www.example.com/article.html";
parameters.picture = "http://www.example.com/article-thumbnail.jpg";
parameters.name = "Article Title";
parameters.caption = "Caption for the link";
parameters.description = "Longer description of the link";
parameters.actions = new {
    name = "View on Zombo",
    link = "http://www.zombo.com",
};
parameters.privacy = new {
    value = "ALL_FRIENDS",
};
parameters.targeting = new {
    countries = "US",
    regions = "6,53",
    locales = "6",
};
dynamic result = client.Post("me/feed", parameters);