[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Obrzut
Right - I am not scraping the PIN? I am using the web browser in .NET (which is similar to Internet Explorer) to authenticate via a pin and username / password credentials. The only part of the workflow I do not follow is opening the URL in IE - I open in it VB.NET Web Browser. But - my user

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Obrzut
Did I state otherwise? You are not reading my words - you are being blinded by the noise from your own head. What I stated is this; I authenticate my VB.NET web browser via PIN etc THIS means my browser is authenticated. If I try to access a page via the program with a TCP Client - I have to

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Abraham Williams
On Wed, Jul 1, 2009 at 07:00, Obrzutsa...@peyoteuk.com wrote: The library is faulty. It does not process leading zero pins. The OAuth implementation is stupid - because it does not authenticate an program but a TCP method. Hence, you guys are s off the mark here it hurts me to talk to

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Stuart
2009/7/1 Obrzut sa...@peyoteuk.com: Did I state otherwise? You are not reading my words - you are being blinded by the noise from your own head. What I stated is this; I authenticate my VB.NET web browser via PIN etc THIS means my browser is authenticated. If I try to access a page

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread DWRoelands
Obrzut: My application does exactly what you say is impossible. The user authenticates via the web browser, then my desktop application completes the process using the six-digit PIN. There's no need to fix any XML that comes from Twitter, and there's no need to process any HTML from a web page.

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Nancy Miracle
If you force datatyping to alpha, six chars, this will be a nonproblem Sent from my iPhone On Jul 1, 2009, at 8:00 AM, Obrzut sa...@peyoteuk.com wrote: Did I state otherwise? You are not reading my words - you are being blinded by the noise from your own head. What I stated is this; I

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-07-01 Thread Bojan Rajkovic
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 DWRoelands wrote: Obrzut: My application does exactly what you say is impossible. The user authenticates via the web browser, then my desktop application completes the process using the six-digit PIN. There's no need to fix any XML that comes

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-06-30 Thread Obrzut
Dim w As New System.IO.StreamWriter(fs) Page = Page.Replace(, ) Page = Page.Replace(- , ) Page = Page.TrimStart( ) w.Write(Page) This is a better example of code that does what the above code sample should be doing rather than changing UTF8 to

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-06-30 Thread DWRoelands
I'm curious; why are you screen-scraping an HTML page in a Twitter app? On Jun 30, 4:09 pm, Obrzut sa...@peyoteuk.com wrote: Dim w As New System.IO.StreamWriter(fs)             Page = Page.Replace(, )             Page = Page.Replace(- , )             Page = Page.TrimStart( )            

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-06-30 Thread Obrzut
What do you mean by screen scraping? Is it because I am taking the HTML page and turning it into a XML document? This is because of OAuth. It uses HTML pages to validate. Perhaps I am wrong - but once I use a web browser to validate - I cannot use a TCP Client to get the XML because I

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-06-30 Thread Bojan Rajkovic
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Obrzut wrote: What do you mean by screen scraping? Is it because I am taking the HTML page and turning it into a XML document? This is because of OAuth. It uses HTML pages to validate. Perhaps I am wrong - but once I use a web browser to

[twitter-dev] Re: How-To: Load the Twitter XML into a VB.Net XML Document...

2009-06-30 Thread DWRoelands
You can absolutely authenticate in a web page, even if your application is not a web application. Mine works that way. Here's how it should go. Bojan, please correct me if I'm wrong. 1. Your application calls GetAuthorizationLink() to get the URL of the authorization page (you've got this