我对这段代码有问题:
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在所有“令牌”上都会出现相同的错误。
使用推特2-2-4。同样使用Visual Studio 2012。
发布于 2013-01-02 17:58:28
此外,OAuthTokens.ConsumerKey和OAuthTokens.ConsumerSecret没有get访问器,所以您不能像现在这样使用它们。
为什么你不想要请求令牌?
https://stackoverflow.com/questions/14087845
复制相似问题