在Facebook用户的墙上发布用户在网站上进行一些互动

时间:2012-06-30 13:25:02

标签: asp.net facebook facebook-c#-sdk

有一个拍卖网站,要求是每次用户在拍卖中进行拍卖。如果用户允许我们代表他们发布,该操作将发布在他们的Facebook墙上。这是可能的,我必须知道能够做到这一点。我对facebook应用程序的开发知之甚少。

3 个答案:

答案 0 :(得分:2)

我不了解facebook-c#-sdk(正如您标记的那样)但是需要遵循这些步骤

  1. 使用facebook OAuth 2.0权限
  2. 使用user_status对用户进行身份验证
  3. 您需要使用required param
  4. 调用状态api 在谷歌上搜索后,我发现了一个使用facebook-c#-sdk

    更新状态的小解决方案
    FacebookClient fbClient = new FacebookClient(accessToken);  
    parameters = new Dictionary<string, object> { 
        { "message", "this is my test message" }
    };
    fbClient.Post("me/feed", parameters);
    

答案 1 :(得分:1)

上面的答案是一个可能的解决方案,但有点笨拙。

利用Open Graph Actions会更好。

你的出发点是:

https://developers.facebook.com/docs/opengraph/

它并不像FB建议的那么简单,文档也很粗略,但是根据您的要求,对于自动化的“无摩擦”动作,这是要遵循的路线。

答案 2 :(得分:0)

我创建了一个视频教程和示例源代码,用于完成此操作。

视频/代码: http://www.markhagan.me/Samples/Grant-Access-And-Post-As-Facebook-User-ASPNet

如果您不想访问我的网站,请参阅以下源代码:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using Facebook;

namespace FBO
{
    public partial class facebooksync : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            CheckAuthorization();
        }

        private void CheckAuthorization()
        {
            string app_id = "374961455917802";
            string app_secret = "9153b340ee604f7917fd57c7ab08b3fa";
            string scope = "publish_stream,manage_pages";

            if (Request["code"] == null)
            {
                Response.Redirect(string.Format(
                    "https://graph.facebook.com/oauth/authorize?client_id={0}&redirect_uri={1}&scope={2}",
                    app_id, Request.Url.AbsoluteUri, scope));
            }
            else
            {
                Dictionary<string, string> tokens = new Dictionary<string, string>();

                string url = string.Format("https://graph.facebook.com/oauth/access_token?client_id={0}&redirect_uri={1}&scope={2}&code={3}&client_secret={4}",
                    app_id, Request.Url.AbsoluteUri, scope, Request["code"].ToString(), app_secret);

                HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;

                using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
                {
                    StreamReader reader = new StreamReader(response.GetResponseStream());

                    string vals = reader.ReadToEnd();

                    foreach (string token in vals.Split('&'))
                    {
                        //meh.aspx?token1=steve&token2=jake&...
                        tokens.Add(token.Substring(0, token.IndexOf("=")),
                            token.Substring(token.IndexOf("=") + 1, token.Length - token.IndexOf("=") - 1));
                    }
                }

                string access_token = tokens["access_token"];

                var client = new FacebookClient(access_token);

                client.Post("/me/feed", new { message = "markhagan.me video tutorial" });
            }
        }
    }
}