c# - WebClient DownloadString not getting all the information -
i'm trying following:
string url = @"https://picasaweb.google.com/data/feed/api/user/bladibla?thumbsize=206c"; webclient myclient = new webclient(); string picasaxml = myclient.downloadstring(url); when go url (which not real url ofcourse, "bladibla" not actual username), see information. when @ picasaxml, i'm missing parts of information. xml-sections missing in document.
can me?
-- update -- real url : https://picasaweb.google.com/data/feed/api/user/tim@boerenbond.be?thumbsize=206c if go url, should lot of information, including names of photoalbums created there. when run code displayed higher, i'm not getting information.
ok, noticed when go page on machine, i'm not getting info either.
Comments
Post a Comment