1

我正在尝试编写一个 Windows 服务,该服务将在运行时将结果发布到我的 Facebook 页面。

我刚刚下载了 Facebook C# SDK v6.0.10.0 并在 .Net 4.0 中编写了 windows 应用程序

我创建了一个 facebook 应用程序帐户并获得了所需的 AppID 和密码。

最终目标是将这个 Windows 服务发布在我的 facebook 页面墙上作为页面而不是应用程序用户。

当我去获取我的 Facebook 应用程序的帐户时,我不断收到错误消息。

string strAppID = "my app api id";
string strSecret = "my app secret code";
Facebook.FacebookClient fbClient = new Facebook.FacebookClient();
fbClient.AppId = strAppID;
fbClient.AppSecret = strSecret;
dynamic ac = fbClient.Get("oauth/access_token", new
{
    client_id = strAppID,
    client_secret = strSecret,
    grant_type = "client_credentials"
});

string strAccessToken = String.Empty;
strAccessToken = ac.access_token;
if (!String.IsNullOrEmpty(strAccessToken))
{

    fbClient = new Facebook.FacebookClient(strAccessToken);
    fbClient.AccessToken = strAccessToken;
    fbClient.AppId = strAppID;
    fbClient.AppSecret = strSecret;

    //Here is where it is bombing
    dynamic fbAccounts = fbClient.Get("/me/accounts");

    fbClient = new Facebook.FacebookClient(strAccessToken);
    fbClient.AccessToken = strAccessToken;
    fbClient.AppId = strAppID;
    fbClient.AppSecret = strSecret;

    dynamic me = fbClient.Get("**Name of the facebook page I am trying to post to**");

    string strPageID = String.Empty;
    strPageID = me.id;

    string strPageAccessToken = String.Empty;

    //Loop over the accounts looking for the ID that matches your destination ID (Fan Page ID)
    foreach (dynamic account in fbAccounts.data)
    {
        if (account.id == strPageID)
        {
            //When you find it, grab the associated access token and put it in the Dictionary to pass in the FB Post, then break out.
            strPageAccessToken = account.access_token;
            break;
        }
    }


    try
    {
        fbClient.AccessToken = strPageAccessToken;
        var args = new Dictionary<string, object>();
        args["message"] = "Testing 123";
        fbClient.Post("/" + strPageID + "/feed", args);

    }
    catch (Facebook.FacebookOAuthException ex)
    {
        // oauth exception occurred
    }
    catch (Facebook.FacebookApiLimitException ex)
    {
        // api limit exception occurred.
    }
    catch (Facebook.FacebookApiException ex)
    {
        // other general facebook api exception
    }
    catch (Exception ex)
    {
        // non-facebook exception such as no internet connection.
    }
}

我得到的错误在线:

dynamic fbAccounts = fbClient.Get("/me/accounts");

(OAuthException - #2500) 必须使用活动访问令牌来查询有关当前用户的信息。

4

2 回答 2

1

请参阅此处:(OAuthException - #2500)必须使用活动访问令牌来查询有关当前用户的信息

您正在获取应用程序的访问令牌,而不是用户。因此,“我”没有意义。您应该在此处提供 ID - 您的用户 ID、您的应用 ID 或您的应用有权访问的任何其他 ID。

于 2012-04-20T12:44:18.393 回答
0
dynamic ac = fbClient.Get("oauth/access_token", new
{
    client_id = strAppID,
    client_secret = strSecret,
    grant_type = "client_credentials"
});

上面的代码可能不适用于 6.0 版本。

OAuth 2.0 - 访问令牌的交换代码

FacebookClient 支持仅解析 json 响应。由于这个原因,“oauth/access_token”令牌在使用 FacebookClient.Get(“oauth/access_token”) 时将不起作用。相反,您需要使用 FacebookOAuthClient 中的方法。

您可以在此处找到更多详细信息:http: //blog.prabir.me/post/Facebook-CSharp-SDK-Making-Requests.aspx

希望这可以帮助。

于 2012-04-24T18:18:05.147 回答