C# - 使用Twitterizer的“无效令牌”

时间:2012-12-30 02:38:54

标签: c# twitterizer

我遇到了这段代码的问题:

OAuthTokens tokens = new OAuthTokens();
tokens.AccessToken = "****";
tokens.AccessTokenSecret = "****";
tokens.ConsumerKey = "****";
tokens.ConsumerSecret = "****";

小程序(截至要求):

//cutted out default "using"'s
using Twitterizer;

namespace Mustache_Tweet_App
{
    public partial class Main : Form
    {
        // config
        OAuthTokens Tokens = new OAuthTokens();
        Tokens.AccessToken = "...";
        Tokens.AccessTokenSecret = "...";
        Tokens.ConsumerKey = "...";
        Tokens.ConsumerSecret = "...";
        Tokens.RequestToken = Twitterizer.OAuthUtility.GetRequestToken(Tokens.ConsumerKey, Tokens.ConsumerSecret, "");
        public Main()
        {
            InitializeComponent();
        }

        private void GetAuthKey_Click(object sender, EventArgs e)
        {
            String AuthUri = Twitterizer.OAuthUtility.BuildAuthorizationUri();
            System.Diagnostics.Process(AuthUri);
            MessageBox.Show("Please authorize and copy the key then click OK and paste it into the the key box.", "Info");
        } 
    }
}

错误:

****.Main.tokens' is a 'field' but is used like a 'type'
Invalid token '=' in class, struct, or interface member declaration

在所有“令牌”上获得相同的错误。

使用Twitterizer 2-2-4。 也使用Visual Studio 2012。

1 个答案:

答案 0 :(得分:0)

OAuthTokens对象没有属性RequestToken

OAuthTokens.ConsumerKeyOAuthTokens.ConsumerSecret也没有get访问者,因此您无法按照自己的方式使用它们。

你为什么不请求令牌?您已将它们放在Tokens对象中。