Re: [twitter-dev] Re: White Listing and Rate Limiting

2009-12-14 Thread Michael Rutherford
That looks like it might do the trick. I'll give it a go! Cheers! Michael On Mon, Dec 14, 2009 at 8:36 AM, martimedia duffym...@googlemail.comwrote: Instead of using request.Credentials = new NetworkCredential(username, password); try the following (sorry it's in C#) as .NET will try

Re: [twitter-dev] Re: White Listing and Rate Limiting

2009-12-14 Thread Michael Rutherford
Thanks much! That did it. The VB.Net code is as follows: Dim encbuff As Byte() = System.Text.Encoding.UTF8.GetBytes(userName + : + password) Dim enc As String = Convert.ToBase64String(encbuff) client.Headers.Add(Authorization, Basic + enc) On Mon, Dec 14, 2009 at 8:36 AM, martimedia

Re: [twitter-dev] Re: White Listing and Rate Limiting

2009-11-23 Thread Michael Steuer
Are you sure your checking your rate with an authenticated call? If you don't, you'd get the rate for your IP On Nov 23, 2009, at 7:02 PM, mtruth rutherf...@michaelsworld.net wrote: I whitelisted my account. My IP would change depending on where I am doing my work. On Nov 23, 10:43

Re: [twitter-dev] Re: White Listing and Rate Limiting

2009-11-23 Thread Michael Rutherford
Yes, when I send the request to the server, I set the network credentials with my username and password. The same way I would any other call that requires authentication. On Tue, Nov 24, 2009 at 1:23 PM, Michael Steuer mste...@gmail.com wrote: Are you sure your checking your rate with an