[twitter-dev] The remote server returned an error: (401) Unauthorized.

2011-04-19 Thread The World Connection
I'm using TwitterVB and for some reason in the last week I've been
receiving the following error.

The remote server returned an error: (401) Unauthorized.

I'm using the following code structure.
http://twittervb.codeplex.com/wikipage?title=OAuth%20Web%20Tutorial

Nothing changed.  I've tried to reset my customer key/secret, that
didn't work.  I've tried to recreate the app, that didn't work.

Do I have to wait for a propagation time period?
Does Twitter restrict IP addresses?  My website is sitting on a host.

Any ideas?

Thanks!

Nathan

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] The remote server returned an error: (401) Unauthorized.

2011-04-19 Thread Matt Harris
Hi Nathan,

So we can help diagnose the problem could you inspect the response body that 
comes back from your request to the API. 

It contains an explanation of why the 401 is being returned and let's us know 
how to proceed.

Best
@themattharris

On Apr 19, 2011, at 11:17, The World Connection nathan.poeppel...@gmail.com 
wrote:

 I'm using TwitterVB and for some reason in the last week I've been
 receiving the following error.
 
 The remote server returned an error: (401) Unauthorized.
 
 I'm using the following code structure.
 http://twittervb.codeplex.com/wikipage?title=OAuth%20Web%20Tutorial
 
 Nothing changed.  I've tried to reset my customer key/secret, that
 didn't work.  I've tried to recreate the app, that didn't work.
 
 Do I have to wait for a propagation time period?
 Does Twitter restrict IP addresses?  My website is sitting on a host.
 
 Any ideas?
 
 Thanks!
 
 Nathan
 
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] The remote server returned an error: (401) Unauthorized. + asp.net

2010-10-07 Thread Mansi
I have to post text on Twitter through my web site.
For that I've created one application on Twitter. And have done all
the related changes in site source code.

I am using .net Framework 2.0.

But having issue while redirecting to Twitter
(oAuth.AuthorizationLinkGet()).
It throws bug The remote server returned an error: (401) Unauthorized
in below code. (oAuthTwitter.cs file)
  public string WebResponseGet(HttpWebRequest webRequest)
{
StreamReader responseReader = null;
string responseData = ;

try
{
responseReader = new
StreamReader(webRequest.GetResponse().GetResponseStream()); //HERE IT
THROWS EXCEPTION.
responseData = responseReader.ReadToEnd();
}
catch
{
throw;
}
finally
{
webRequest.GetResponse().GetResponseStream().Close();
responseReader.Close();
responseReader = null;
}

return responseData;
}



What causes this bug? And what is the solution?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] The remote server returned an error: (401) Unauthorized

2010-08-07 Thread Punit.khaire
Hi guys,

I started to work on the twitter application .Our main task is to
tweet messages using oAuth authentication.

I am sending below request using GET method,

http://api.twitter.com/oauth/request_token?oauth_callback=http://203.78.217.115/IssueManager/Login.aspoauth_consumer_key=ilmsYrfa0XjtsqJXCB6HcQoauth_nonce=821b87d0-2022-4f50-adcd-76ddae52c5dboauth_signature=Q01ZADdBJNh5dbltMMQXP37EkVg=oauth_signature_method=HMAC-SHA1oauth_timestamp=1281177991oauth_version=1.0

When I manually hit the above URl I get following error message,

 Failed to validate oauth signature and token

I dont understand y I get this message,as I am sending everything in
my parameter list.

Am I missing something here,thanks in advance for any help.


[twitter-dev] The remote server returned an error: (401) Unauthorized

2010-01-27 Thread Jayster
Hi can anyone please help I am currently writing an app for Twitter
and I seem to be having a problem with it with the error The remote
server returned an error: (401) Unauthorized. Is there anything I am
doing wrong.

Here is the code:

protected string ExecutePostCommand(string url, string userName,
string password, string data) {
WebRequest request = WebRequest.Create(url);
if (!string.IsNullOrEmpty(userName)  
!string.IsNullOrEmpty
(password)) {
WebProxy pry = new WebProxy(10.5.83.2, 8080);
   // pry.Credentials =
CredentialCache.DefaultCredentials;
pry.Credentials = new NetworkCredential(usernamel,
password,domain);
request.Proxy = pry;
request.ContentType = application/x-www-form-
urlencoded;
request.Method = POST;

if (!string.IsNullOrEmpty(TwitterClient)) {
request.Headers.Add(X-Twitter-Client, 
TwitterClient);
}

if 
(!string.IsNullOrEmpty(TwitterClientVersion)) {

request.Headers.Add(X-Twitter-Version, TwitterClientVersion);
}

if (!string.IsNullOrEmpty(TwitterClientUrl)) {
request.Headers.Add(X-Twitter-URL, 
TwitterClientUrl);
}


if (!string.IsNullOrEmpty(Source)) {
data += source= + 
HttpUtility.UrlEncode(Source);
}

byte[] bytes = Encoding.UTF8.GetBytes(data);

request.ContentLength = bytes.Length;
using (Stream requestStream = 
request.GetRequestStream()) {
requestStream.Write(bytes, 0, 
bytes.Length);

using (WebResponse response = 
request.GetResponse()) {
using (StreamReader reader = 
new StreamReader
(response.GetResponseStream())) {
return 
reader.ReadToEnd();
}
}
}
}

return null;
}


Re: [twitter-dev] The remote server returned an error: (401) Unauthorized

2010-01-27 Thread Ed Costello
On Thu, Jan 28, 2010 at 12:51 AM, Jayster jehs...@yahoo.co.uk wrote:

   pry.Credentials = new NetworkCredential(usernamel,
 password,domain);


What are the HTTP headers you’re transmitting to twitter?

-- 
-ed costello


[twitter-dev] The remote server returned an error: (401) Unauthorized.

2009-07-24 Thread HatMan

Working in C# trying to send a tweet using Basic Auth with my own
current credentials from a Vista machine running IIS7. Any reason why
I am getting 401 Unauthorized?

try
{
string user = Convert.ToBase64String
(System.Text.Encoding.UTF8.GetBytes(metroUserName + : +
metroPassword));
byte[] bytes = System.Text.Encoding.ASCII.GetBytes
(status= + tweetText);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create
(http://twitter.com/statuses/update.xml;);
request.Method = POST;
request.ServicePoint.Expect100Continue = false;
request.Headers.Add(Authorization, Basic  + user);
request.ContentType = application/x-www-form-urlencoded;
request.ContentLength = bytes.Length;

Stream reqStream = request.GetRequestStream();
reqStream.Write(bytes, 0, bytes.Length);
reqStream.Close();

HttpWebResponse response = (HttpWebResponse)
request.GetResponse();

Stream responseStream = response.GetResponseStream();
StreamReader returned = new StreamReader(responseStream);
// what is returned at this point
validationLabel.Text = returned.ReadToEnd();


}
catch (Exception ex)
{
validationLabel.Text = ex.Message;
}