I am using Twitterizer API for accessing twitter related functionality. I have one demo application that works fine with my consumerkey and consumersecret i run this application locally. but when i integrate the same settings in my live application i got this error

Value cannot be null.Parameter name: String

Can anyone tell me why?

Thanks

link|improve this question

38% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Please check you keys. Also check your server time. Sometimes timestamp that we generate give some issues.

link|improve this answer
feedback

Without a stacktrace or more details, there is absolutely no way I could give you an absolutely accurate answer.

My best guess is that your request is failing, possibly because of DNS, lack of .NET permissions, or misconfigured proxy settings on the server and you're not checking if the ResponseObject is null before trying to use it.

To check for failed requests at runtime (so you can display a nice error without an ugly try/catch), check the Result property of the TwitterResponse<T> you got back from the library.

For example,

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

TwitterResponse<TwitterStatus> tweetResponse = TwitterStatus.Update(tokens, "Hello, #Twitterizer");
if (tweetResponse.Result == RequestResult.Success)
{
    // Tweet posted successfully!
}
else
{
    // Something bad happened
}

That code is lifted directly from my homepage.

link|improve this answer
in this code what is tokens.AccessToken and tokens.AccessTokenScrete? – iphonedev23 Oct 24 '11 at 5:36
Before you can post updates to Twitter, the user must authorize your account using OAuth. When they do, your application will get the access token and secret values. – Ricky Smith Oct 24 '11 at 17:56
exactly, i am getting error in authentication.i am using following code OAuthTokenResponse requestToken = OAuthUtility.GetRequestToken("consumerKey", "consumerScrete", callbackUrl); and getting the error. – iphonedev23 Oct 25 '11 at 6:15
Are you getting the response token first? Then, is the user logging in to twitter and granting your application access? These MUST happen before you request an access token. – Ricky Smith Oct 27 '11 at 1:03
Ricky, can you please provide me steps? Actually i downloaded the code from your site and trying to implement in my web application. Also i followed instructions mentioned on your pages. Thanks – iphonedev23 Oct 31 '11 at 4:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.