url = "https://twitter.com/account/verify_credentials.xml"
Dim test As String = url
Dim UR As System.Net.WebRequest = System.Net.WebRequest.Create
(test)
UR.Credentials = New NetworkCredential("APONetworks",
"<password>")
Dim str As System.IO.Stream = UR.GetResponse
().GetResponseStream()
Dim r As New System.IO.StreamReader(str)
TextBox1.Text = r.ReadToEnd()
r.Close()
str.Close()
========================================================
SUSSED IT!
Yeah - I cheated a lil bit - but I am now able to retrieve all the
data from the page and parse it into my textbox! Ha.
Now - I am making my first Twitter App!