"squirreltown" wrote:
I changed
tweetElements = xml.GetChildElements()
to
tweetElements = json
That's fine, although you don't really need the tweetElements variable. You can just write the for statement the way I quoted it above.
"squirreltown" wrote:
which get me past that point but I'm getting a blank canvas no tweets yet.
I am getting this message in the debugger and cant find what 400 means - Http: # 5975 done status: 400
Status 400 is "Bad Request". It means the server is rejecting your request for some reason. You're sending something that twitter doesn't like.
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html has a list of all HTTP error codes.
--Mark