first:
Qt Code:
  1. QString Username("Test");
  2. QString AuthValue("Test1");
  3. Header.setRequest("GET", "/data/feed/api/user/" + Username + "?kind=album");
  4. Header.setValue("Authorization", "GoogleLogin auth=" + AuthValue);
  5.  
  6. QBuffer AlbumsXml;
  7.  
  8. http->setHost("picasaweb.google.com");
  9. httpGetAlbumsId = http->request( Header, "", &AlbumsXml);
To copy to clipboard, switch view to plain text mode 
second:
Qt Code:
  1. http->setHost("picasaweb.google.com");
  2. http->get("/data/feed/api/user/" + Username + "?kind=album", &AlbumsXml);
To copy to clipboard, switch view to plain text mode 

these two snippets have difference, i can't find what!
help me please.