里面有一个拍卖网站,要求是每次用户在拍卖中出价。如果用户允许我们代表他们发帖,该操作将发布在他们的 Facebook 墙上。这是可能的吗?我必须知道什么才能做到这一点。我对 facebook 应用程序开发不太了解。
问问题
1354 次
3 回答
2
我不知道facebook-c#-sdk
(如您标记的那样),但为此需要遵循这些步骤
- 使用具有user_status权限的facebook OAuth 2.0对用户进行身份验证
- 并且您需要使用所需的参数调用状态 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);
于 2012-06-30T13:48:32.633 回答
1
上面的答案是一个可能的解决方案,但有点笨拙。
利用 Open Graph Actions 会更好。
你的出发点是阅读:
https://developers.facebook.com/docs/opengraph/
当然,这并不像 FB 建议的那么简单,文档也很粗略,但是对于根据您的要求进行自动化的“无摩擦”操作,这是要遵循的路线。
于 2012-07-01T10:55:27.743 回答
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" });
}
}
}
}
于 2012-10-13T18:28:12.433 回答