[libgdata/offline-testing] fixup! tests: Add trace file testing support to the PicasaWeb test suite



commit 4cbe78648e039126e69fa243cc6f046e2472aadd
Author: Philip Withnall <philip tecnocode co uk>
Date:   Tue Jul 30 17:41:23 2013 +0200

    fixup! tests: Add trace file testing support to the PicasaWeb test suite

 gdata/tests/picasaweb.c                            |   48 --------
 gdata/tests/traces/picasaweb/authentication        |   18 ++--
 gdata/tests/traces/picasaweb/authentication-async  |   18 ++--
 .../picasaweb/authentication-async-cancellation    |   41 +++++++
 gdata/tests/traces/picasaweb/global-authentication |   18 ++--
 gdata/tests/traces/picasaweb/insert-album          |   48 ++++----
 .../{insert-album-async => insert_album-async}     |   24 ++--
 .../picasaweb/insert_album-async-cancellation      |   50 ++++++++
 gdata/tests/traces/picasaweb/query-all-albums      |   24 ++--
 .../tests/traces/picasaweb/query-all-albums-async  |   30 -----
 .../query-all-albums-async-progress-closure        |   24 ++--
 .../traces/picasaweb/query-all-albums-with-limits  |   72 ++++++------
 gdata/tests/traces/picasaweb/query-user            |   24 ++--
 .../tests/traces/picasaweb/query_all_albums-async  |   30 +++++
 .../picasaweb/query_all_albums-async-cancellation  |   98 ++++++++++++++++
 .../{query-user-async => query_user-async}         |   24 ++--
 .../traces/picasaweb/query_user-async-cancellation |   90 +++++++++++++++
 ...username-async => query_user_by_username-async} |   24 ++--
 .../query_user_by_username-async-cancellation      |  120 ++++++++++++++++++++
 .../tests/traces/picasaweb/setup-query-all-albums  |  104 +++++++++---------
 gdata/tests/traces/picasaweb/teardown-insert-album |   20 ++--
 .../traces/picasaweb/teardown-query-all-albums     |   80 +++++++-------
 22 files changed, 690 insertions(+), 339 deletions(-)
---
diff --git a/gdata/tests/picasaweb.c b/gdata/tests/picasaweb.c
index 3ce1cc0..c586bb8 100644
--- a/gdata/tests/picasaweb.c
+++ b/gdata/tests/picasaweb.c
@@ -373,8 +373,6 @@ GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
 G_STMT_START {
        GDataClientLoginAuthorizer *authorizer;
 
-       gdata_test_mock_server_start_trace (mock_server, "authentication-async");
-
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_PICASAWEB_SERVICE);
 
@@ -409,8 +407,6 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_picasaweb_service_get_primary_authorization_domain ()) == FALSE);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -582,8 +578,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_files, QueryFilesData);
 /* Test that asynchronously querying for all photos in an album lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_files, QueryFilesData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-files-async");
-
        gdata_picasaweb_service_query_files_async (GDATA_PICASAWEB_SERVICE (service), data->album, NULL, 
cancellable, NULL, NULL, NULL,
                                                   async_ready_callback, async_data);
 } G_STMT_END,
@@ -599,8 +593,6 @@ G_STMT_START {
        } else {
                g_assert (photo_feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_picasaweb_service_query_files_async() are called correctly.
@@ -796,8 +788,6 @@ set_up_insert_album (InsertAlbumData *data, gconstpointer service)
 {
        GTimeVal timestamp;
 
-       gdata_test_mock_server_start_trace (mock_server, "setup-insert-album");
-
        data->album = gdata_picasaweb_album_new (NULL);
        g_assert (GDATA_IS_PICASAWEB_ALBUM (data->album));
 
@@ -807,8 +797,6 @@ set_up_insert_album (InsertAlbumData *data, gconstpointer service)
 
        g_time_val_from_iso8601 ("2002-10-14T09:58:59.643554Z", &timestamp);
        gdata_picasaweb_album_set_timestamp (data->album, timestamp.tv_sec * 1000);
-
-       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -863,8 +851,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_album, InsertAlbumData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (insert_album, InsertAlbumData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "insert-album-async");
-
        gdata_picasaweb_service_insert_album_async (GDATA_PICASAWEB_SERVICE (service), data->album, 
cancellable,
                                                    async_ready_callback, async_data);
 } G_STMT_END,
@@ -883,8 +869,6 @@ G_STMT_START {
        } else {
                g_assert (entry == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -1109,8 +1093,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_all_albums, QueryAllAlbumsData);
 /* Test that asynchronously querying for all albums lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_albums, QueryAllAlbumsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-all-albums-async");
-
        gdata_picasaweb_service_query_all_albums_async (GDATA_PICASAWEB_SERVICE (service), NULL, NULL, 
cancellable, NULL,
                                                        NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -1127,8 +1109,6 @@ G_STMT_START {
        } else {
                g_assert (album_feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_picasaweb_service_query_all_albums_async() are called 
correctly.
@@ -1320,8 +1300,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (query_comments, QueryCommentsData);
 /* Test that asynchronously querying for all albums lists them correctly. */
 GDATA_ASYNC_TEST_FUNCTIONS (comment_query, QueryCommentsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "comment-query-async");
-
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service), NULL, cancellable, NULL, NULL, NULL,
                                                async_ready_callback, async_data);
 } G_STMT_END,
@@ -1338,8 +1316,6 @@ G_STMT_START {
        } else {
                g_assert (comments_feed == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_commentable_query_comments_async() are called correctly.
@@ -1382,8 +1358,6 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
 {
        set_up_query_files ((QueryFilesData*) data, service);
 
-       gdata_test_mock_server_start_trace (mock_server, "setup-insert-comment");
-
        /* Create a test comment to be inserted. */
        data->comment = gdata_picasaweb_comment_new (NULL);
        g_assert (GDATA_IS_PICASAWEB_COMMENT (data->comment));
@@ -1391,8 +1365,6 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
        gdata_entry_set_content (GDATA_ENTRY (data->comment), "This is a test comment.");
 
        data->new_comment = NULL;
-
-       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1462,8 +1434,6 @@ GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_comment, InsertCommentData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_insert, InsertCommentData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "comment-insert-async");
-
        gdata_commentable_insert_comment_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1479,8 +1449,6 @@ G_STMT_START {
        } else {
                g_assert (new_comment == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1505,8 +1473,6 @@ test_comment_delete (QueryCommentsData *data, gconstpointer service)
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_delete, QueryCommentsData,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "comment-delete-async");
-
        gdata_commentable_delete_comment_async (GDATA_COMMENTABLE (data->parent.file1), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment1), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1532,8 +1498,6 @@ G_STMT_START {
                        g_clear_error (&error);
                }
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1558,8 +1522,6 @@ test_query_user (gconstpointer service)
 /* Check that asynchronously querying for the currently authenticated user's details works and returns the 
correct details. */
 GDATA_ASYNC_TEST_FUNCTIONS (query_user, void,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-user-async");
-
        gdata_picasaweb_service_get_user_async (GDATA_PICASAWEB_SERVICE (service), NULL, cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
 G_STMT_START {
@@ -1574,8 +1536,6 @@ G_STMT_START {
        } else {
                g_assert (user == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Check that querying for a user other than the currently authenticated user, asynchronously, gives us an 
appropriate result. This result should,
@@ -1583,8 +1543,6 @@ G_STMT_START {
  * lack of information correctly.) */
 GDATA_ASYNC_TEST_FUNCTIONS (query_user_by_username, void,
 G_STMT_START {
-       gdata_test_mock_server_start_trace (mock_server, "query-user-by-username-async");
-
        gdata_picasaweb_service_get_user_async (GDATA_PICASAWEB_SERVICE (service), "philip.withnall", 
cancellable, async_ready_callback, async_data);
 } G_STMT_END,
 G_STMT_START {
@@ -1607,8 +1565,6 @@ G_STMT_START {
        } else {
                g_assert (user == NULL);
        }
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -1733,8 +1689,6 @@ G_STMT_START {
        GDataUploadStream *upload_stream;
        GError *error = NULL;
 
-       gdata_test_mock_server_start_trace (mock_server, "upload-default-album-async");
-
        /* Prepare the upload stream */
        upload_stream = gdata_picasaweb_service_upload_file (GDATA_PICASAWEB_SERVICE (service), NULL, 
data->photo, data->slug,
                                                             data->content_type, cancellable, &error);
@@ -1790,8 +1744,6 @@ G_STMT_START {
        }
 
        g_clear_error (&upload_error);
-
-       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
diff --git a/gdata/tests/traces/picasaweb/authentication b/gdata/tests/traces/picasaweb/authentication
index 5d4c5d4..b715374 100644
--- a/gdata/tests/traces/picasaweb/authentication
+++ b/gdata/tests/traces/picasaweb/authentication
@@ -1,27 +1,27 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375013812
-> Soup-Debug: SoupSession 1 (0x6673d0), SoupMessage 1 (0x9aa280), SoupSocket 1 (0x8a4170)
+> Soup-Debug-Timestamp: 1375193172
+> Soup-Debug: SoupSession 1 (0x6683f0), SoupMessage 1 (0x78d280), SoupSocket 1 (0x7cb970)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013812
-< Soup-Debug: SoupMessage 1 (0x9aa280)
+< Soup-Debug-Timestamp: 1375193172
+< Soup-Debug: SoupMessage 1 (0x78d280)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Sun, 28 Jul 2013 12:16:52 GMT
+< Date: Tue, 30 Jul 2013 14:06:12 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
 < Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAANgAAAB6f0i4cZG8notHc2gg2TBrOCpuQj4LXCF9WxT89DpsagNCyFMm7Gj_Hi6_UAtKhM7FA92E6dVgsmSXIGcPVsm5OaEpAsHgqj15PdePm9ViKKIpzyR6lfY-OvmYntcqK-taGlk_uYjyX680C5tiHkJK7m5zitLxeuhxjSLHnFtYmVTZ-OSgBEFQAt0iUDU2ryd42LBFJCsc_AukMurdLnn6nppALc6IJkx6YDiNBoaVLpcjxb8QaLOiG9NmqVlxTa5yXDEb_XuwbMjaV6G4vpMkvpYjd0MCiD76zUSpiT6Xdw
-< 
LSID=DQAAANoAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKraIcEop4yjhO93tpUeGjoMeLAyk4i2ZqG3f7OOUWl3Dbgj_LT_B3dq8ABZud7cKiNfitIdofZR1LKsT4davc8c7ZRo5kPNqrnfErbvAO0Hl2lSOoftEAkvtWaj2_Z8HgqipqQGmM12xG056ES4sk8N6pbS4bH77ICLTBCAcgt-wwyxLljrK8ndce8QpxO4Qrs4KmTtBotOsIWowe8MzxHA4G9pcaWy8dWgtyGiSG4KdQ
-< 
Auth=DQAAANoAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hoy27SrFF5AD7FPPqEUDeUcyAkGoqHY6L4OhH94RP9EfzXVFB2VYe2iThE66atO5lih16iXqihu7-w7rBgnEyzeA
+< 
SID=DQAAANgAAAAm30JpMejldxrGZqDDBmyr9VzZMkWUTSlRiv_Sl1b5Nhv3adu8rz7j0dwxDtjA5M9sqauEWfWni0mRBPEIRJx8TLxjxcsXAfh9VoN5KWjIwCRevZYPM3QSoHHwFQK19y7Am4MNTa8NNPiYTkJJsJpltuX8e1XuNNg8PQiJ0_DkngQpWAsvU7dp9ZtiIP7cuDwq_7v_LoliaUmD-iX8xAyAshUsoJHCPUyh8tJS_C2-WW0pw3YWMwTQqvzjLw8T5bg4bwnmIWXnVoMOz3fxgFTGSWTrF69l1xG-ejYihsqDYA
+< 
LSID=DQAAANoAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J_yWJILe434pnCflE8X2wjIpLFHaZPla_0jkC-0S2HV1LxQ2reZNPMHmM2hTxKUopLEBAVhKcarP8veCJxVScfrah5pCMob1GPgleDwnAvakA-KKzvkRbyErNM8XinL4whxINfDK6UTeLg_v_5_qQ4EIXtQA_VZQMgPgkF_bNqKLrN-RH4zADh4Wv9kMKeNjtjwbuhwcP50yxD05oF_kz4M7EIx0hX4c4lFmU-9KG5Dww
+< 
Auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWHtpd0rV-Wgh5PAw5rtXmdEL9LPU4YSkIkBm6OGE-TFeUBby69BPDLKB15nntY_O_Q
   
diff --git a/gdata/tests/traces/picasaweb/authentication-async 
b/gdata/tests/traces/picasaweb/authentication-async
index 60f3d64..300a29d 100644
--- a/gdata/tests/traces/picasaweb/authentication-async
+++ b/gdata/tests/traces/picasaweb/authentication-async
@@ -1,27 +1,27 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375013813
-> Soup-Debug: SoupSession 1 (0x6674e0), SoupMessage 1 (0x7fffe00252b0), SoupSocket 1 (0x7fffe00261a0)
+> Soup-Debug-Timestamp: 1375193173
+> Soup-Debug: SoupSession 1 (0x668500), SoupMessage 1 (0x78d640), SoupSocket 1 (0x7cbeb0)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013813
-< Soup-Debug: SoupMessage 1 (0x7fffe00252b0)
+< Soup-Debug-Timestamp: 1375193173
+< Soup-Debug: SoupMessage 1 (0x78d640)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Sun, 28 Jul 2013 12:16:53 GMT
+< Date: Tue, 30 Jul 2013 14:06:13 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
 < Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAANgAAACXLuT3e-lR-nqbu6fHTAY4sR1HDcZVVtNRRvUn33cSP2OECigMrW5TIde9KCZPF03ZkQjrlkQw9m_Ddo59iHIEkGg6jIBZPas2SpyAzWh3JVV5nde_swwVpgQJvnzZLw054oS8gIipTiIKpK8avH8cXlnP9X-IOL0pYK0w6mEHjzwOP4xISogY2yW31qCBOn4418DHQ3r7lWrpZXVeyD5Csmh5mlOm42sp31uTrDErekk4GsEknBFKM95Gxr9Cb08T919_TZRxqxeC4Vc3reogth9M2yhLGNgq2gnVhnVhbA
-< 
LSID=DQAAANoAAAAXqQygxOTT_DSMv72QkovNy0XD_0fDL-4yOrdPxJiuWTUTEfuNpkx1SZH41O_izcXWWeho6klsetrTQG_pYnQvIpy4-afvlttSkX8jr9Ox-P6ZWHb65IZKtX4L78-5AeTqc_y5Q4qO67Bc8_4ITnenxgDpmVGFzMlSUfgqLeKVn5R9n8Xc83pZ-T5nWzi341LCTL-V7_ClS_XtK__HG_vYHR2h_I80-I62GtNgPNXB6WTzOHzGWaqrG-LV_Fm3zkPc0PMu8ddNMfQuiE2Op5zpNYEMp3TZNvrvIGvbl5_3fw
-< 
Auth=DQAAANoAAAAXqQygxOTT_DSMv72QkovNy0XD_0fDL-4yOrdPxJiuWTUTEfuNpkx1SZH41O_izcX-K2FMOSXE9yrMkc8nDAipmGn7Dw6C0nTAs2qxxzrVxCsvQtImGhM19_45F-6okFs8lTzZqn_iiyRe6omwYjXQCjdbr6bvisrCyo7IVzXrtTTP-dQEiXJQPUfFsV3l7KEmfsBwmkw_67qujHqretpk_3WC1USkbMgVZ_yn4tF8fQRiybumqNdMf4OCEhCoyf_lu8rHILabCmtDqu1BDW9J4TQXgRkzvALVUz2vvjaBFw
+< 
SID=DQAAANkAAADz6I5y543CCjZXOpzHRL5Wy2v6O9dHOK5ZL-gkle65RbGOwdyggx2m5YWShFc8QmsykdyBKyKnD9ZxJAzOzeOpqaHZiKyiwXnhhqF-n71hCFLI0X66TbxkKcYY8DjtBm3yrmq1qsaJ2Ih8dNVwGsRRzkjBhWEV-hvEM4ATwZzP8U9EkkUrB1M7FM-NRXY_SCCfr7G7HmeTeUJrjBchBk3cF5aSgcDTUW5DAgJOdRfV7tSIRf877itIN_gPRlkmzWS0BhaJC7IGko9hilmk6h5Nqlry2e23b7uhsVWbMpeKhQ
+< 
LSID=DQAAANsAAABWmL76wrk2TqLhr0R8y3MUE9QHvBb7tTdpvkh-6vWtkpu-cC3WScDlQxfk_5N5NAI2U-xwnqC7mhGYlviKWVpSulVjJzqgS3TLyTUpmdmONFlEfzZMf2dIHCUrWHf00WzredV_HoQelWgN0qBoOJSFpj7O__0-EypihGFFkQV0G9NryUZKGlog6R_DFML1vphRMR1YuOBaSv8GEkFndO1WIEl9j7FQxEBB3CBAP4v7OR19_KOA7SuBpT_rtZmdbS2wGtvTuVaUhiN4jvWRfaEXuAtuCUTY8LbuZM_2iV0fXw
+< 
Auth=DQAAANoAAABWmL76wrk2TqLhr0R8y3MUE9QHvBb7tTdpvkh-6vWtkpu-cC3WScDlQxfk_5N5NALhO_5Ix-AyQKglVmoDTujmSRVN5FGSGJUAiEybNEVH5AEWKHdUFf1PfRPDTJ_MAOSo5W7agpjCZdoYK_82KnbPYyAcrC5FyK4b943aWiooIv1ugKmkIp4HZK6NEQCQdjH3Nurdc9YCr53n2D95cvElm1lsS1nvtwq-6dBwpZZcIHsSdtrpe30tSQmzL5C1qoD2ALcy1CrmKf8OhqcWOtRLV5TdjwDfsbSFaRzxxbvR-A
   
diff --git a/gdata/tests/traces/picasaweb/authentication-async-cancellation 
b/gdata/tests/traces/picasaweb/authentication-async-cancellation
new file mode 100644
index 0000000..9fa22a6
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/authentication-async-cancellation
@@ -0,0 +1,41 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193174
+> Soup-Debug: SoupSession 1 (0x668500), SoupMessage 1 (0x7fffe00262b0), SoupSocket 1 (0x7fffe00281a0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 1 Cancelled
+< Soup-Debug-Timestamp: 1375193174
+< Soup-Debug: SoupMessage 1 (0x7fffe00262b0)
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375193174
+> Soup-Debug: SoupSession 1 (0x6683f0), SoupMessage 1 (0x7fffe40028c0), SoupSocket 1 (0x7fffdc0043c0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193174
+< Soup-Debug: SoupMessage 1 (0x7fffe40028c0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 14:06:15 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 947
+< Server: GSE
+< 
+< 
SID=DQAAANgAAACE4a6JEhL9MqNFpE-q7I3gdAS8mY_m634u37CefXGg6awpOZw81o8og4PfiQOf2ZMm7Ma7oUr4v3MQTR-Aw2uKvAUukley4pYFRIcRFS2LTr8bjpngzYUUDf8TOJIDjeWQrJQ51ujAlcDgg8cv4pGq9X1OYy_cBrESmyYXzEzf0aJhgW5kPb-I7pA84IWe0m36nW9ZfP5UpZS5TiBf_t-UvbWJdEo2xWwYp8J0e4GGiSqdfwF1MhRn2c-c4ZGzOFEbDXfUfW1x3TTN2H4ZM7ZueedgsFFFM1QyYLdJHBejiA
+< 
LSID=DQAAANwAAAAwilHcMrBJKdIRjpG3J0vlDW-KOSHFkBE14z7LMkU43DR5RQe_Z_rW7tnuxGEN45ByDVyqbMnaA6w46FfRvspunAf3ganeKFylmTR8ZfQdPdo3NdqsAaC-A2nZuUGkkGZSG8joTC23-LQ_3lx10BwnsY_S8afAWzqPe9dX33O28ilbqlOtUNdZJvau137Bv7bUmNEILNIH-lGnJDVBC7bL2DeQwgbZuPocbbEzLp201s4kgEdfxDx__k-VTObMBEsJZoi-wnMBuJEOe074AMIIE6EoFCGIPfi6UTBVSFtrnw
+< 
Auth=DQAAANsAAAAwilHcMrBJKdIRjpG3J0vlDW-KOSHFkBE14z7LMkU43DR5RQe_Z_rW7tnuxGEN45BX83CWF6Rx2FV-mfvaNd2mbn4n2hPc_eFYRzmAIdqBs0mosGrTCs-uQr5XH_bVE3bkVm1DlHJ0VAZiw-TVjVpPUBgntqKPx-bKkDzltMGUgsqeuAdAFp4uhTAb-4shLyfrUgR6890AelCebv0cecAdmBCj1Ti-Nmw4VWFRFvUV58_YGU0aZ94pKzP6h5HygAwR8XKxBz_IHBZ4X09ts54ss7KC2m5VXEimpiU3SW9i-g
+  
diff --git a/gdata/tests/traces/picasaweb/global-authentication 
b/gdata/tests/traces/picasaweb/global-authentication
index 9ccecde..a6b566c 100644
--- a/gdata/tests/traces/picasaweb/global-authentication
+++ b/gdata/tests/traces/picasaweb/global-authentication
@@ -1,27 +1,27 @@
POST /accounts/ClientLogin HTTP/1.1
-> Soup-Debug-Timestamp: 1375013812
-> Soup-Debug: SoupSession 1 (0x6671b0), SoupMessage 1 (0x9aa0a0), SoupSocket 1 (0x8a40b0)
+> Soup-Debug-Timestamp: 1375193172
+> Soup-Debug: SoupSession 1 (0x6681d0), SoupMessage 1 (0x78d0a0), SoupSocket 1 (0x7cb8b0)
Host: www.google.com
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=libgdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Epicasaweb%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=lh2&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013812
-< Soup-Debug: SoupMessage 1 (0x9aa0a0)
+< Soup-Debug-Timestamp: 1375193172
+< Soup-Debug: SoupMessage 1 (0x78d0a0)
 < Content-Type: text/plain
 < Cache-control: no-cache, no-store
 < Pragma: no-cache
 < Expires: Mon, 01-Jan-1990 00:00:00 GMT
-< Date: Sun, 28 Jul 2013 12:16:52 GMT
+< Date: Tue, 30 Jul 2013 14:06:12 GMT
 < X-Content-Type-Options: nosniff
 < X-XSS-Protection: 1; mode=block
 < Content-Length: 947
 < Server: GSE
 < 
-< 
SID=DQAAANgAAAB6f0i4cZG8notHc2gg2TBrOCpuQj4LXCF9WxT89DpsagNCyFMm7Gj_Hi6_UAtKhM7FA92E6dVgsmSXIGcPVsm5OaEpAsHgqj15PdePm9ViKKIpzyR6lfY-OvmYntcqK-taGlk_uYjyX680C5tiHkJK7m5zitLxeuhxjSLHnFtYmVTZ-OSgBEFQAt0iUDU2ryd42LBFJCsc_AukMurdLnn6ZYKwah-06tnIvQBaXUPixNfkr9oPPAYQCwOh08vwLHw6yqdwMhbDJiz0xzDxD7s-8SJpqS6FiQqgI0jfm7abOg
-< 
LSID=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKraIcEop4yjhO93tpUeGjoMeLAyk4i2ZqG3f7OOUWl3Dbgj_LT_B3dq8ABZud7cKiNfitIdofZR1LKsT4davc8c7ZRo5kPNqrnfErbvAO0Hl2lSOoftEAkvtWaj2_Z8HgqipqQGmM12xG056ES4sk8N06c2uNXGVcQr1Ue9li2uuuGyOKJFqw8FAfDAxcN39XPtbNne4QgotHuI5S7VmLcpxMpbiQPBg3pWCMYHOCsKuA
-< 
Auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+< 
SID=DQAAANkAAAAm30JpMejldxrGZqDDBmyr9VzZMkWUTSlRiv_Sl1b5Nhv3adu8rz7j0dwxDtjA5M9sqauEWfWni0mRBPEIRJx8TLxjxcsXAfh9VoN5KWjIwCRevZYPM3QSoHHwFQK19y7Am4MNTa8NNPiYTkJJsJpltuX8e1XuNNg8PQiJ0_DkngQpWAsvU7dp9ZtiIP7cuDwq_7v_LoliaUmD-iX8xAyA3A-nBePxJIBuDkpre_bsB1zV6J5WmRYST7zJ_hdJ5vEoFwbf1mMmJK2kfIQpZm7Lldnb5N8kbAF1RBGxKOT1Zg
+< 
LSID=DQAAANoAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J_yWJILe434pnCflE8X2wjIpLFHaZPla_0jkC-0S2HV1LxQ2reZNPMHmM2hTxKUopLEBAVhKcarP8veCJxVScfrah5pCMob1GPgleDwnAvakA-KKzvkRbyErNM8XinL4whxINfDK6UTeLg_v_5_qQ4EIXtQA_VZQMgPgkF_bNqKLl_P8HWiHrFNqa3oMrEufunlCY-yH0fX6Myj4sAY2shJDIen-dHv5rsBHwyND_KCKw
+< 
Auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
   
diff --git a/gdata/tests/traces/picasaweb/insert-album b/gdata/tests/traces/picasaweb/insert-album
index 92cdddc..d0d0e8e 100644
--- a/gdata/tests/traces/picasaweb/insert-album
+++ b/gdata/tests/traces/picasaweb/insert-album
@@ -1,8 +1,8 @@
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013863
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 61 (0x7fffe00250d0), SoupSocket 28 (0x8a45f0)
+> Soup-Debug-Timestamp: 1375193224
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 60 (0x7fffe40191d0), SoupSocket 27 (0x7cbdf0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,54 +11,54 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013864
-< Soup-Debug: SoupMessage 61 (0x7fffe00250d0)
-< Expires: Sun, 28 Jul 2013 12:17:44 GMT
-< Date: Sun, 28 Jul 2013 12:17:44 GMT
+< Soup-Debug-Timestamp: 1375193224
+< Soup-Debug: SoupMessage 60 (0x7fffe40191d0)
+< Expires: Tue, 30 Jul 2013 14:07:04 GMT
+< Date: Tue, 30 Jul 2013 14:07:04 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=TdLthJaHGShF; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=sakOzQCqp3RAQ5OCe8lkeA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=1EyCoJwu_n78; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=YvA5qIylphVzW0GxwNdVDw; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639574681203057</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:43.663Z</updated><app:edited>2013-07-28T12:17:43.663Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos74?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057/acl?authkey=Gv1sRgCNeW8MuikuqSDw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639574681203057</gphoto:id><gphoto:name>ThanksgivingPhotos74</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/ThanksgivingPhotos74.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/s160-c/ThanksgivingPhotos74.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409926225606689</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:04.400Z</updated><app:edited>2013-07-30T14:07:04.400Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='alternate' type='text/ht
 ml' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos98?authkey=Gv1sRgCIHX18X_kLpH'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689/acl?authkey=Gv1sRgCIHX18X_kLpH'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409926225606689</gphoto:id><gphoto:name>ThanksgivingPhotos98</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>103
 
4589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/ThanksgivingPhotos98.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/s160-c/ThanksgivingPhotos98.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
   
GET /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013864
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 62 (0x7fffe0025670), SoupSocket 28 (0x8a45f0)
+> Soup-Debug-Timestamp: 1375193224
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 61 (0x7fffd800eca0), SoupSocket 27 (0x7cbdf0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013864
-< Soup-Debug: SoupMessage 62 (0x7fffe0025670)
-< Expires: Sun, 28 Jul 2013 12:17:44 GMT
-< Date: Sun, 28 Jul 2013 12:17:44 GMT
+< Soup-Debug-Timestamp: 1375193225
+< Soup-Debug: SoupMessage 61 (0x7fffd800eca0)
+< Expires: Tue, 30 Jul 2013 14:07:05 GMT
+< Date: Tue, 30 Jul 2013 14:07:05 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=2ofdSgnD9GBh; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=l7jIwK4ioQK4eyp9hXQ5HQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=GC-ICG7ox22z; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=-YaNUbgF96-m_Y-BBNzWPQ; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8CQng9eyp7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:43 GMT
+< ETag: W/"CUUGRXo7eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:07:04 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8CQng9eyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:43.663Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/
 data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:n
 
ame>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/
 
entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='edit' type='application/atom+xml' href='https://picasa
 
web.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQ
 IzvG3cSQs/TestAlbumForQueryFiles21.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picas
 
aweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgCKq9yeTElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>59056346841417
 
71345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI
 
.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 r
 el='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh
 4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schema
 s.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google
 
.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:g
 roup></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=
 Gv1sRgCNb_ofXV98b6pQE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphoto:bytesUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><
 media:content 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='
 http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://pic
 
asaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for QueryFiles</media
 :title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/57607043785742
 47089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><me
 dia:group><media:content 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights>
 <link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name>
 
<uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for Q
 ueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumi
 d/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gph
 oto:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><summary/><rights>
 private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picas
 
aweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg'
 height='160' width='160'/><media:title type='plain'>Test 
 album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles11?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/libgdata.pic
 asaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdat
 a.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><s
 ummary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><nam
 
e>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg'
 height='160' width='160'/><media:title ty
 pe='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/use
 r/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickn
 ame>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFile
 s</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><
 
author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><med
 ia:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/en
 try/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><g
 photo:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:16.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album fo
 r QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_Ze
 
Wr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width=
 '160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.googl
 
e.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb
 </gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>2013-05-11T05:42:12.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><tit
 le>Test album for QueryFiles</title><summary/><rights>private</rights><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?a
 
uthkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg
 ' height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='self' type='application/atom+xml' href='http
 
s://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>li
 
bgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</updated><app:edited>2013-05-11T05:42:08.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2
 007#album'/><title>Test album for QueryFiles</title><summary/><rights>private</rights><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649
 
428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQuery
 Files02.jpg' height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='self' type='application/atom+xml' h
 
ref='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:
 
user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</updated><app:edited>2013-05-11T05:42:04.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photo
 s/2007#album'/><title>Drop Box</title><summary>Default album for newly uploaded 
photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/alb
 
umid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Default album for newly uploaded photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.google
 usercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' height='160' 
width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4
 Mbw67DytQE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numph
 
otosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-07-02T22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://s
 chemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.
 
google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent.com/-y
 1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasawe
 b/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphot
 
os>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12
 :00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8
 uz3hwE'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg'
 type='image/jpeg' medium='image'/><media:cre
 dit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos of the 
feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/fee
 d/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>Thanksgi
 vingPhotos61</gphoto:name><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhotos61.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&
 
quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL
 2AE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:gro
 up><media:content 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family
  photos of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynM
 
P6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08h
 MeZg/s160-c/ThanksgivingPhotos62.jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/
<link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,

MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</g
 
photo:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z
 </app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='http://schemas.google.com/acl/2007#access
 ControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/ThanksgivingPhotos66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='
 plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?auth
 key=Gv1sRgCPfTjKWOu7_sCg'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 MN</gphot
 
o:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgda
 
ta.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='edit' type='application/atom+xml' href='https://
 
picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.com/-Yp2EbjWQT
 qU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639574681203057</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:43.663Z</updated><app:edited>2013-07-28T12:17:43.663Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='h
 ttp://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos74?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057?authkey=Gv1sRgCNeW8MuikuqSDw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639574681203057/acl?authkey=Gv1sRgCNeW8MuikuqSDw'/><author><name>libgdata.picasaweb</name><uri>https://picasawe
 
b.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639574681203057</gphoto:id><gphoto:name>ThanksgivingPhotos74</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/ThanksgivingPhotos74.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-5bujUocHWzs/UfUL51xcsXE/AAAAAAAAMJw/2ZbmxYOi4k4/s160-c/ThanksgivingPhotos74.jpg'
 height='160' width='160'/><me
 dia:title type='plain'>Thanksgiving photos</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUGRXo7eCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:07:04.400Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409926225606689</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:04.400Z</updated><app:edited>2013-07-30T14:07:04.400Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='
 
https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos98?authkey=Gv1sRgCIHX18X_kLpH'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689?authkey=Gv1sRgCIHX18X_kLpH'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409926225606689/acl?authkey=Gv1sRgCIHX18X_kLpH'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409926225606689</gpho
 to:id><gphoto:name>ThanksgivingPhotos98</gphoto:name><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/ThanksgivingPhotos98.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-5KM4I5kjnq0/UffIiM6EuCE/AAAAAAAAMe4/qtNcFWlEVkU/s160-c/ThanksgivingPhotos98.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></fe
 ed>
   
diff --git a/gdata/tests/traces/picasaweb/insert-album-async b/gdata/tests/traces/picasaweb/insert_album-async
similarity index 60%
rename from gdata/tests/traces/picasaweb/insert-album-async
rename to gdata/tests/traces/picasaweb/insert_album-async
index a0eeddb..6157723 100644
--- a/gdata/tests/traces/picasaweb/insert-album-async
+++ b/gdata/tests/traces/picasaweb/insert_album-async
@@ -1,8 +1,8 @@
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013868
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 68 (0x7fffe00251c0), SoupSocket 32 (0x7fffe4017170)
+> Soup-Debug-Timestamp: 1375193226
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 63 (0x7fffd800ebb0), SoupSocket 28 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
@@ -11,24 +11,24 @@
<?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013870
-< Soup-Debug: SoupMessage 68 (0x7fffe00251c0)
-< Expires: Sun, 28 Jul 2013 12:17:50 GMT
-< Date: Sun, 28 Jul 2013 12:17:50 GMT
+< Soup-Debug-Timestamp: 1375193227
+< Soup-Debug: SoupMessage 63 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:07 GMT
+< Date: Tue, 30 Jul 2013 14:07:07 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=13YVit1BcDCA; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=mFt7IDPGfWGISSlxAkMiAg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=flrQn82pg8oZ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=92L2TmpD5Oqxpf2macZZ9Q; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639602363627073</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:17:49.037Z</updated><app:edited>2013-07-28T12:17:49.037Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos77?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073/acl?authkey=Gv1sRgCMm47L7KqunRHA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639602363627073</gphoto:id><gphoto:name>ThanksgivingPhotos77</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Gk0Iexp-0LE/UfUL7c5c9kE/AAAAAAAAMKE/5fyPbWdhPhI/ThanksgivingPhotos77.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Gk0Iexp-0LE/UfUL7c5c9kE/AAAAAAAAMKE/5fyPbWdhPhI/s160-c/ThanksgivingPhotos77.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409932028162849</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:06.662Z</updated><app:edited>2013-07-30T14:07:06.662Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos99?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849?authkey=Gv1sRgCN6V85-a0s7xVQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409932028162849/acl?authkey=Gv1sRgCN6V85-a0s7xVQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409932028162849</gphoto:id><gphoto:name>ThanksgivingPhotos99</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:tim
 
estamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-tcLfFa1jihY/UffIiihgsyE/AAAAAAAAMfA/6vl076Gnvx8/ThanksgivingPhotos99.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-tcLfFa1jihY/UffIiihgsyE/AAAAAAAAMfA/6vl076Gnvx8/s160-c/ThanksgivingPhotos99.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
   
diff --git a/gdata/tests/traces/picasaweb/insert_album-async-cancellation 
b/gdata/tests/traces/picasaweb/insert_album-async-cancellation
new file mode 100644
index 0000000..784255a
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/insert_album-async-cancellation
@@ -0,0 +1,50 @@
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193228
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 65 (0x7fffe40192c0), SoupSocket 29 (0x7fffe00287a0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 1 Cancelled
+< Soup-Debug-Timestamp: 1375193228
+< Soup-Debug: SoupMessage 65 (0x7fffe40192c0)
+  
+> POST /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193229
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 66 (0x7fffd800ebb0), SoupSocket 30 (0x7fffdc0046c0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title 
type='text'>Thanksgiving photos</title><summary type='text'>Family photos of the 
feast!</summary><rights>private</rights><category term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Thanksgiving photos</media:title><media:description type='plain'>Family photos of the 
feast!</media:description></media:group></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375193230
+< Soup-Debug: SoupMessage 66 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:10 GMT
+< Date: Tue, 30 Jul 2013 14:07:10 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=UVVD9lHnGV2p; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=sxdiJ4i3KYb1qWXRQGofwg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.0
+< ETag: "YD0qeyI."
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409948133134593</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-30T14:07:09.809Z</updated><app:edited>2013-07-30T14:07:09.809Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='alternate' type='text/
 html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos101?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593/acl?authkey=Gv1sRgCNOliffP6fuuCQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409948133134593</gphoto:id><gphoto:name>ThanksgivingPhotos101</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:t
 
imestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-IB76ZjJ9g4I/UffIjehPEQE/AAAAAAAAMfM/zQylT1ctwRc/ThanksgivingPhotos101.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-IB76ZjJ9g4I/UffIjehPEQE/AAAAAAAAMfM/zQylT1ctwRc/s160-c/ThanksgivingPhotos101.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving photos</media:title></media:group></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-all-albums b/gdata/tests/traces/picasaweb/query-all-albums
index 0b6a22d..5c76ef7 100644
--- a/gdata/tests/traces/picasaweb/query-all-albums
+++ b/gdata/tests/traces/picasaweb/query-all-albums
@@ -1,30 +1,30 @@
GET /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013817
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 5 (0x9aa0a0), SoupSocket 4 (0x8a4470)
+> Soup-Debug-Timestamp: 1375193180
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 5 (0x78d0a0), SoupSocket 4 (0x7cbc70)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013817
-< Soup-Debug: SoupMessage 5 (0x9aa0a0)
-< Expires: Sun, 28 Jul 2013 12:16:57 GMT
-< Date: Sun, 28 Jul 2013 12:16:57 GMT
+< Soup-Debug-Timestamp: 1375193181
+< Soup-Debug: SoupMessage 5 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:21 GMT
+< Date: Tue, 30 Jul 2013 14:06:21 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=3gqYyfXnW-Qv; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=VsYfjbE30vomcBkcz1xlcw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=tAAF9Rvb-fVX; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=zNYej99Oqg85v9BtB-ET4Q; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8FR30yeip7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:16:56 GMT
+< ETag: W/"CUYDSHc4fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:19 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8FR30yeip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:16:56.392Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639371533391409</id><published>2013-07-28T12:16:56.000Z</published><updated>2013-07-28T12:16:56.392Z</updated><app:edited>2013-07-28T12:16:56.392Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.googl
 e.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums32?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409?authkey=Gv1sRgCNe-oNqWxPelIw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639371533391409/acl?authkey=Gv1sRgCNe-oNqWxPelIw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639371533391409</gphoto:i
 
d><gphoto:name>TestAlbum4ForQueryAllAlbums32</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013816000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-RGt3U2CDD_c/UfULuA_PFjE/AAAAAAAAMHc/piGNWYqtg04/TestAlbum4ForQueryAllAlbums32.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RGt3U2CDD_c/UfULuA_PFjE/AAAAAAAAMHc/piGNWYqtg04/s160-c/TestAlbum4ForQueryAllAlbums32.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>ht
 
tps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639367278242849</id><published>2013-07-28T12:16:55.000Z</published><updated>2013-07-28T12:16:55.644Z</updated><app:edited>2013-07-28T12:16:55.644Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums33?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='edit' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849?authkey=Gv1sRgCKv8k9Crld_M_AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639367278242849/acl?authkey=Gv1sRgCKv8k9Crld_M_AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639367278242849</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013815000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh6.googleusercon
 tent.com/-Y3ASDZESTsw/UfULtxIurCE/AAAAAAAAMHY/EBxcGk2uAnY/TestAlbum3ForQueryAllAlbums33.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Y3ASDZESTsw/UfULtxIurCE/AAAAAAAAMHY/EBxcGk2uAnY/s160-c/TestAlbum3ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639362688809761</id><published>2013-07-28T12:16:54.000Z</published><updated>2013-07-28T12:16:54.727Z</updated><app:edited>2013-07-28T12:16:54.727Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.
 com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums34?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761?authkey=Gv1sRgCNKat7CF36raDg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639362688809761/acl?authkey=Gv1sRgCNKat7CF36raDg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com
 
/libgdata.picasaweb</uri></author><gphoto:id>5905639362688809761</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013814000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-A-gxpwBnWNU/UfULtgCheyE/AAAAAAAAMHU/cMuJy9WCKS4/TestAlbum2ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-A-gxpwBnWNU/UfULtgCheyE/AAAAAAAAMHU/cMuJy9WCKS4/s160-c/TestAlbum2ForQueryAllAlbums34.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</medi
 a:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639360296147857</id><published>2013-07-28T12:16:53.000Z</published><updated>2013-07-28T12:16:53.709Z</updated><app:edited>2013-07-28T12:16:53.709Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums36?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/59
 05639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639360296147857?authkey=Gv1sRgCKXToKnt2oX4eA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639360296147857/acl?authkey=Gv1sRgCKXToKnt2oX4eA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639360296147857</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013813000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphot
 o:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-RIU3f-QaiZo/UfULtXIEW5E/AAAAAAAAMHQ/lSRZe5zdtCY/TestAlbum1ForQueryAllAlbums36.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-RIU3f-QaiZo/UfULtXIEW5E/AAAAAAAAMHQ/lSRZe5zdtCY/s160-c/TestAlbum1ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title><sum
 mary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><name>
 
libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:name>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title type='p
 lain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/user/l
 ibgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname
libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/TestAlbumForQueryFiles21.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for QueryAllAl
 bums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgCKq9ye
 
TElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634684141771345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 heigh
 t='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/atom+xml
 ' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUse
 
d><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='h
 ttp://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdat
 
a.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3C
 dp9po/s160-c/TestAlbumForQueryFiles20.jpg' height='160' width='160'/><media:title type='plain'>Test album 
for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='s
 elf' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphoto:byt
 
esUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#
 kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api
 
/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AA
 AAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6C7CQ'
 /><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining>
 
<gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.google.
 com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com
 
/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-VC-g0Oz6ZL
 Y/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=Gv1sR
 gCKj_lsPJ5d_YTw'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:num
 
photosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='http:/
 /schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://picasawe
 
b.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent.com/
 -ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles11?a
 uthkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining
996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><categor
 y scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='
 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.google
 usercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg' 
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumFo
 rQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphot
 
osremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app:edit
 ed><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+
 xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https:/
 
/lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/
 TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gph
 
oto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:16.362
 Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='applic
 ation/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail u
 
rl='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdat
 a.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</gphot
 
o:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>2013-05
 -11T05:42:12.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#accessContr
 olList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?authkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keyword
 s/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' href='https://picasawe
 b.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gphoto:nu
 
mphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</updated><ap
 p:edited>2013-05-11T05:42:08.361Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl/2007
 #accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><me
 dia:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQueryFiles02.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' href='https
 ://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestamp><gp
 
hoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</updated>
 <app:edited>2013-05-11T05:42:04.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Drop Box</title><summary>Default album for newly 
uploaded photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://schemas.g
 oogle.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media
 :description type='plain'>Default album for newly uploaded 
photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' 
height='160' width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67Dy
 tQE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private</gph
 
oto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-07-02T
 
22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authk
 ey=Gv1sRgCKO5mpeQwZjDHg'/><link rel='http://schemas.google.com/acl/2007#accessControlList' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:credi
 t>libgdata.picasaweb</media:credit><media:description type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/
 5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><gphoto
 :location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.goog
 
le.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh
 3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><r
 ights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdata.pic
 
asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>ThanksgivingPhotos61</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhotos61.
 jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='applica
 tion/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gp
 
hoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 schem
 e='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='applicati
 on/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynMP6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the 
 feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/s160-c/ThanksgivingPhotos62.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><
 link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:access>pr
 
ivate</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636
 
964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/data/en
 try/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/S
 hmhXZiX02k/ThanksgivingPhotos66.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2
 005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasa
 
web</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>Thank
 sgiving photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api
 /user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb<
 /gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
   
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure 
b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
index aaf432c..b8c45ce 100644
--- a/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
+++ b/gdata/tests/traces/picasaweb/query-all-albums-async-progress-closure
@@ -1,30 +1,30 @@
GET /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013849
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 35 (0x7fffe40148e0), SoupSocket 16 (0x8a4230)
+> Soup-Debug-Timestamp: 1375193207
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 35 (0x7fffd800ed90), SoupSocket 16 (0x7cbaf0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013849
-< Soup-Debug: SoupMessage 35 (0x7fffe40148e0)
-< Expires: Sun, 28 Jul 2013 12:17:29 GMT
-< Date: Sun, 28 Jul 2013 12:17:29 GMT
+< Soup-Debug-Timestamp: 1375193208
+< Soup-Debug: SoupMessage 35 (0x7fffd800ed90)
+< Expires: Tue, 30 Jul 2013 14:06:48 GMT
+< Date: Tue, 30 Jul 2013 14:06:48 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=-OzW6AvTw9bt; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=shhRxGb4G3CzF3UjjkQxGA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=YwfYre448Tsx; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ECxuosml-CrBUXaV3Ew9iw; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8ASXs5eyp7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:28 GMT
+< ETag: W/"CUUERn0-eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:47 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8ASXs5eyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:28.523Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:
 
itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639511868877409</id><published>2013-07-28T12:17:28.000Z</published><updated>2013-07-28T12:17:28.523Z</updated><app:edited>2013-07-28T12:17:28.523Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.googl
 
e.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums35?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409?authkey=Gv1sRgCOuurKfM1-mD2gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639511868877409/acl?authkey=Gv1sRgCOuurKfM1-mD2gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639511868877409</gph
 
oto:id><gphoto:name>TestAlbum4ForQueryAllAlbums35</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013848000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-NOKceedwNd0/UfUL2Lx0qmE/AAAAAAAAMI8/miZ6T_7nUBQ/TestAlbum4ForQueryAllAlbums35.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-NOKceedwNd0/UfUL2Lx0qmE/AAAAAAAAMI8/miZ6T_7nUBQ/s160-c/TestAlbum4ForQueryAllAlbums35.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><
 
id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639504634394289</id><published>2013-07-28T12:17:27.000Z</published><updated>2013-07-28T12:17:27.685Z</updated><app:edited>2013-07-28T12:17:27.685Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums36?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='edit' typ
 e='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289?authkey=Gv1sRgCP710K_64ayFBg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639504634394289/acl?authkey=Gv1sRgCP710K_64ayFBg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639504634394289</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013847000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercon
 tent.com/-p8buLzcC-gw/UfUL1w0_NrE/AAAAAAAAMI4/Ff7a38vq7mY/TestAlbum3ForQueryAllAlbums36.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-p8buLzcC-gw/UfUL1w0_NrE/AAAAAAAAMI4/Ff7a38vq7mY/s160-c/TestAlbum3ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639507447689361</id><published>2013-07-28T12:17:26.000Z</published><updated>2013-07-28T12:17:27.057Z</updated><app:edited>2013-07-28T12:17:27.057Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.
 com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums37?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639507447689361/acl?authkey=Gv1sRgCPCO7uD_mfC2ggE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.googl
 
e.com/libgdata.picasaweb</uri></author><gphoto:id>5905639507447689361</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums37</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013846000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-V8mI3sGlIgA/UfUL17TusJE/AAAAAAAAMI0/kJ10xO49pAw/TestAlbum2ForQueryAllAlbums37.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-V8mI3sGlIgA/UfUL17TusJE/AAAAAAAAMI0/kJ10xO49pAw/s160-c/TestAlbum2ForQueryAllAlbums37.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums<
 /media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639500699371649</id><published>2013-07-28T12:17:25.000Z</published><updated>2013-07-28T12:17:26.129Z</updated><app:edited>2013-07-28T12:17:26.129Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums39?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/album
 id/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639500699371649?authkey=Gv1sRgCLf-xL6P6pfFVg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639500699371649/acl?authkey=Gv1sRgCLf-xL6P6pfFVg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639500699371649</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums39</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013845000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</
 gphoto:nickname><media:group><media:content 
url='https://lh6.googleusercontent.com/-Cs9ck-x2qNY/UfUL1iKziIE/AAAAAAAAMIw/CASPL2f9gAI/TestAlbum1ForQueryAllAlbums39.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Cs9ck-x2qNY/UfUL1iKziIE/AAAAAAAAMIw/CASPL2f9gAI/s160-c/TestAlbum1ForQueryAllAlbums39.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637904987587057</id><published>2013-07-28T12:11:14.000Z</published><updated>2013-07-28T12:11:14.897Z</updated><app:edited>2013-07-28T12:11:14.897Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for QueryFiles</title
<summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles22?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057?authkey=Gv1sRgCO3l3Iv359a_NA'/><link
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637904987587057/acl?authkey=Gv1sRgCO3l3Iv359a_NA'/><author><
 
name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637904987587057</gphoto:id><gphoto:name>TestAlbumForQueryFiles22</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013474000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/TestAlbumForQueryFiles22.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-E22LuaZ2ZVE/UfUKYpreAfE/AAAAAAAAMHM/wUIafPZkKlM/s160-c/TestAlbumForQueryFiles22.jpg'
 height='160' width='160'/><media:title ty
 pe='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635064104222385</id><published>2013-07-28T12:00:12.000Z</published><updated>2013-07-28T12:00:13.067Z</updated><app:edited>2013-07-28T12:00:13.067Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles21?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entry/api/u
 ser/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385?authkey=Gv1sRgCN2f-tLrn6u20gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635064104222385/acl?authkey=Gv1sRgCN2f-tLrn6u20gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635064104222385</gphoto:id><gphoto:name>TestAlbumForQueryFiles21</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012812000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nic
 kname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/TestAlbumForQueryFiles21.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-gdDQDMYGH_E/UfUHzSkF_rE/AAAAAAAAMBI/kQIzvG3cSQs/s160-c/TestAlbumForQueryFiles21.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634684141771345</id><published>2013-07-28T11:57:49.000Z</published><updated>2013-07-28T11:58:44.594Z</updated><app:edited>2013-07-28T11:58:44.594Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for Query
 AllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums18?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345?authkey=Gv1sRgCKq9yeTElsz-uwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634684141771345/acl?authkey=Gv1sRgC
 
Kq9yeTElsz-uwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634684141771345</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012669000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/TestAlbum2ForQueryAllAlbums18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-O-Wcn8SfT10/UfUHdLF_GlE/AAAAAAAAL98/EmD4-Bu78rI/s160-c/TestAlbum2ForQueryAllAlbums18.jpg'
 
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905634444921273185</id><published>2013-07-28T11:57:48.000Z</published><updated>2013-07-28T11:57:48.534Z</updated><app:edited>2013-07-28T11:57:48.534Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums20?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='self' type='application/ato
 m+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185?authkey=Gv1sRgCID4oobz9aPCrAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905634444921273185/acl?authkey=Gv1sRgCID4oobz9aPCrAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905634444921273185</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375012668000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:byt
 
esUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/TestAlbum1ForQueryAllAlbums20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-51tuKhkL2wA/UfUHPP7X-2E/AAAAAAAAL94/bLrA3RL2Pbk/s160-c/TestAlbum1ForQueryAllAlbums20.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905631091580133985</id><published>2013-07-28T11:44:48.000Z</published><updated>2013-07-28T11:44:48.376Z</updated><app:edited>2013-07-28T11:44:48.376Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' te
 rm='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles20?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905631091580133985?authkey=Gv1sRgCIuFurSynOKIeQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/li
 
bgdata.picasaweb/albumid/5905631091580133985/acl?authkey=Gv1sRgCIuFurSynOKIeQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905631091580133985</gphoto:id><gphoto:name>TestAlbumForQueryFiles20</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375011888000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/wrBf3Cdp9po/TestAlbumForQueryFiles20.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TVDcmOZrysI/UfUEMDwi4mE/AAAAAAAAL64/w
 rBf3Cdp9po/s160-c/TestAlbumForQueryFiles20.jpg' height='160' width='160'/><media:title type='plain'>Test 
album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDkqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761072391095671425</id><published>2012-07-03T22:23:08.000Z</published><updated>2013-05-11T05:42:42.362Z</updated><app:edited>2013-05-11T05:42:42.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles19?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 r
 el='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425?authkey=Gv1sRgCNb_ofXV98b6pQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761072391095671425/acl?authkey=Gv1sRgCNb_ofXV98b6pQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761072391095671425</gphoto:id><gphoto:name>TestAlbumForQueryFiles19</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341354188000</gphoto:timestamp><gphoto:numphotos>2</gphoto:numphotos><gphoto:numphotosremaining>998</gphoto:numphotosremaining><gphot
 
o:bytesUsed>35320</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/TestAlbumForQueryFiles19.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-3IaCTkfHZrg/T_Nw0PSRWoE/AAAAAAAALVs/qfty_7d7PrQ/s160-c/TestAlbumForQueryFiles19.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDgqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5761069990379874001</id><published>2012-07-03T22:13:49.000Z</published><updated>2013-05-11T05:42:40.361Z</updated><app:edited>2013-05-11T05:42:40.361Z</app:edited><category
 scheme='http://schemas.google.com/g/
 2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles18?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5761069990379874001?authkey=Gv1sRgCM71qOr5vt_WBQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entr
 
y/api/user/libgdata.picasaweb/albumid/5761069990379874001/acl?authkey=Gv1sRgCM71qOr5vt_WBQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5761069990379874001</gphoto:id><gphoto:name>TestAlbumForQueryFiles18</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341353629000</gphoto:timestamp><gphoto:numphotos>1</gphoto:numphotos><gphoto:numphotosremaining>999</gphoto:numphotosremaining><gphoto:bytesUsed>17660</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZtE/AAAAAAAALG0/XJQcX_I44n0/TestAlbumForQueryFiles18.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh5.googleusercontent.com/-_CMpenfeUws/T_Nuof7BZ
 tE/AAAAAAAALG0/XJQcX_I44n0/s160-c/TestAlbumForQueryFiles18.jpg' height='160' width='160'/><media:title 
type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760704378574247089</id><published>2012-07-02T22:35:07.000Z</published><updated>2013-05-11T05:42:36.362Z</updated><app:edited>2013-05-11T05:42:36.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles16?authkey=Gv1sRgCNSPmt7_x6
 C7CQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760704378574247089/acl?authkey=Gv1sRgCNSPmt7_x6C7CQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760704378574247089</gphoto:id><gphoto:name>TestAlbumForQueryFiles16</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268507000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremai
 
ning><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/TestAlbumForQueryFiles16.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-lHmWO-UBQRw/T_IiHFz0lLE/AAAAAAAAKe4/AQqY9p2QfsA/s160-c/TestAlbumForQueryFiles16.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5759113833317391041</id><published>2012-06-28T15:42:44.000Z</published><updated>2013-05-11T05:42:32.362Z</updated><app:edited>2013-05-11T05:42:32.362Z</app:edited><category
 scheme='http://schemas.go
 ogle.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles14?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041?authkey=Gv1sRgCJW--rmMwM3d4QE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.googl
 
e.com/data/entry/api/user/libgdata.picasaweb/albumid/5759113833317391041/acl?authkey=Gv1sRgCJW--rmMwM3d4QE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5759113833317391041</gphoto:id><gphoto:name>TestAlbumForQueryFiles14</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340898164000</gphoto:timestamp><gphoto:numphotos>3</gphoto:numphotos><gphoto:numphotosremaining>997</gphoto:numphotosremaining><gphoto:bytesUsed>52980</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-VC-g0Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/TestAlbumForQueryFiles14.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.googleusercontent.com/-VC-g0
 Oz6ZLY/T-x7hK_r2sE/AAAAAAAAKTE/Hv-2oC9b31I/s160-c/TestAlbumForQueryFiles14.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757505389449675537</id><published>2012-06-24T07:41:17.000Z</published><updated>2013-05-11T05:42:30.361Z</updated><app:edited>2013-05-11T05:42:30.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles13?authkey=
 Gv1sRgCKj_lsPJ5d_YTw'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757505389449675537/acl?authkey=Gv1sRgCKj_lsPJ5d_YTw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757505389449675537</gphoto:id><gphoto:name>TestAlbumForQueryFiles13</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523677000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphot
 
o:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/TestAlbumForQueryFiles13.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Jn0C3tOdK78/T-bEpaqLgxE/AAAAAAAAKPk/gxGcgtizd1I/s160-c/TestAlbumForQueryFiles13.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5757504621534543681</id><published>2012-06-24T07:38:18.000Z</published><updated>2013-05-11T05:42:28.362Z</updated><app:edited>2013-05-11T05:42:28.362Z</app:edited><category
 scheme='h
 ttp://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'/><title>Test album 
for QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles12?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://pic
 
asaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5757504621534543681/acl?authkey=Gv1sRgCNW-98Kz5eq7Nw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5757504621534543681</gphoto:id><gphoto:name>TestAlbumForQueryFiles12</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1340523498000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/TestAlbumForQueryFiles12.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh4.googleusercontent
 .com/-ud4Tyk1ot80/T-bD8t88f0E/AAAAAAAAKMc/yLbDw9n8a_A/s160-c/TestAlbumForQueryFiles12.jpg' height='160' 
width='160'/><media:title type='plain'>Test album for QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753929134212548337</id><published>2012-06-14T16:23:38.000Z</published><updated>2013-05-11T05:42:26.362Z</updated><app:edited>2013-05-11T05:42:26.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFile
 s11?authkey=Gv1sRgCJvFuebTieC7-wE'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337?authkey=Gv1sRgCJvFuebTieC7-wE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753929134212548337/acl?authkey=Gv1sRgCJvFuebTieC7-wE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753929134212548337</gphoto:id><gphoto:name>TestAlbumForQueryFiles11</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339691018000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosrema
 
ining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/TestAlbumForQueryFiles11.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-ejI_vobZ1Ds/T9oQD9uChvE/AAAAAAAAKIg/lQKE_z9GplE/s160-c/TestAlbumForQueryFiles11.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753922778648887201</id><published>2012-06-14T15:58:59.000Z</published><updated>2013-05-11T05:42:24.361Z</updated><app:edited>2013-05-11T05:42:24.361Z</app:edited><ca
 tegory scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles10?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201?authkey=Gv1sRgCJGelsSrkob2Kg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' h
 
ref='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753922778648887201/acl?authkey=Gv1sRgCJGelsSrkob2Kg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753922778648887201</gphoto:id><gphoto:name>TestAlbumForQueryFiles10</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339689539000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/TestAlbumForQueryFiles10.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='https://lh3.g
 oogleusercontent.com/-NC_89o6Ov1I/T9oKSBZlP6E/AAAAAAAAKE4/KmM1aPTC7mk/s160-c/TestAlbumForQueryFiles10.jpg' 
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753917582035390849</id><published>2012-06-14T15:38:49.000Z</published><updated>2013-05-11T05:42:22.362Z</updated><app:edited>2013-05-11T05:42:22.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb/TestAl
 bumForQueryFiles09?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753917582035390849/acl?authkey=Gv1sRgCIDJq-WC2qyNUQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753917582035390849</gphoto:id><gphoto:name>TestAlbumForQueryFiles09</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688329000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:nu
 
mphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/TestAlbumForQueryFiles09.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-qxwST4CVdvE/T9oFjigYEYE/AAAAAAAAKBE/fpCYLGA-oZg/s160-c/TestAlbumForQueryFiles09.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916884198822849</id><published>2012-06-14T15:36:07.000Z</published><updated>2013-05-11T05:42:20.361Z</updated><app:edited>2013-05-11T05:42:20.361Z</app
 :edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles08?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849?authkey=Gv1sRgCLuR2oy73OHvaw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/
 atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916884198822849/acl?authkey=Gv1sRgCLuR2oy73OHvaw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916884198822849</gphoto:id><gphoto:name>TestAlbumForQueryFiles08</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688167000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/TestAlbumForQueryFiles08.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail url='ht
 
tps://lh4.googleusercontent.com/-FOxdF0LPDhA/T9oE663LE8E/AAAAAAAAJ9g/hTGNXOeBiTU/s160-c/TestAlbumForQueryFiles08.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753916203664692769</id><published>2012-06-14T15:33:29.000Z</published><updated>2013-05-11T05:42:18.362Z</updated><app:edited>2013-05-11T05:42:18.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/libgdata.picas
 aweb/TestAlbumForQueryFiles07?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753916203664692769/acl?authkey=Gv1sRgCJTq6Pb84J2cYQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753916203664692769</gphoto:id><gphoto:name>TestAlbumForQueryFiles07</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339688009000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos
<gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/TestAlbumForQueryFiles07.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-tB_pI_r6ZtY/T9oETTrMViE/AAAAAAAAJ58/hxxcJ6W5eYA/s160-c/TestAlbumForQueryFiles07.jpg'
height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753915421170356833</id><published>2012-06-14T15:30:27.000Z</published><updated>2013-05-11T05:42:16.362Z</updated><app:edited>2013-05-11T05:42:1
 6.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles06?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='a
 pplication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753915421170356833/acl?authkey=Gv1sRgCJaq_ZeWr5zTDA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753915421170356833</gphoto:id><gphoto:name>TestAlbumForQueryFiles06</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687827000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/TestAlbumForQueryFiles06.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbn
 ail 
url='https://lh5.googleusercontent.com/-cEi8DqY4EMA/T9oDlwqAUmE/AAAAAAAAJ2U/CQsgVJCWVLY/s160-c/TestAlbumForQueryFiles06.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753913257635658289</id><published>2012-06-14T15:22:02.000Z</published><updated>2013-05-11T05:42:14.361Z</updated><app:edited>2013-05-11T05:42:14.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='alternate' type='text/html' href='https://picasaweb.google.com/li
 bgdata.picasaweb/TestAlbumForQueryFiles05?authkey=Gv1sRgCL715cypqrn54gE'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289?authkey=Gv1sRgCL715cypqrn54gE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753913257635658289/acl?authkey=Gv1sRgCL715cypqrn54gE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753913257635658289</gphoto:id><gphoto:name>TestAlbumForQueryFiles05</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339687322000</gphoto:timestamp><gphoto:numphotos>4</
 
gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/TestAlbumForQueryFiles05.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-1cOVqarpanM/T9oBn03IujE/AAAAAAAAJyw/KxitT1LtH3g/s160-c/TestAlbumForQueryFiles05.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909460100672145</id><published>2012-06-14T15:07:18.000Z</published><updated>2013-05-11T05:42:12.362Z</updated><app:edited>20
 13-05-11T05:42:12.362Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles04?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145?authkey=Gv1sRgCKuMk9vW3ubdygE'/><link
 rel='http://schemas.google.com/acl/2007#access
 ControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909460100672145/acl?authkey=Gv1sRgCKuMk9vW3ubdygE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909460100672145</gphoto:id><gphoto:name>TestAlbumForQueryFiles04</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686438000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/TestAlbumForQueryFiles04.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:ke
 ywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-cFWrSd8mpAY/T9n-Kx8PapE/AAAAAAAAJvE/ZeXQ8DRvZSs/s160-c/TestAlbumForQueryFiles04.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5753909201230338145</id><published>2012-06-14T15:06:17.000Z</published><updated>2013-05-11T05:42:10.362Z</updated><app:edited>2013-05-11T05:42:10.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles03?authkey=Gv1sRgCIW965XfrpvzFw'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145?authkey=Gv1sRgCIW965XfrpvzFw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5753909201230338145/acl?authkey=Gv1sRgCIW965XfrpvzFw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5753909201230338145</gphoto:id><gphoto:name>TestAlbumForQueryFiles03</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1339686377000</gphoto:timestamp><gpho
 
to:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/TestAlbumForQueryFiles03.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bmi14ws5AM0/T9n97tkvmGE/AAAAAAAAJrg/ysK_cWkLCy8/s160-c/TestAlbumForQueryFiles03.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5731216873649428225</id><published>2012-04-14T11:28:32.000Z</published><updated>2013-05-11T05:42:08.361Z</update
 d><app:edited>2013-05-11T05:42:08.361Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles02?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225?authkey=Gv1sRgCKbgqrLhl-2zZA'/><link
 rel='http://schemas.google.com/acl
 /2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5731216873649428225/acl?authkey=Gv1sRgCKbgqrLhl-2zZA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5731216873649428225</gphoto:id><gphoto:name>TestAlbumForQueryFiles02</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1334402912000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/TestAlbumForQueryFiles02.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'
 /><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-y_4o7bv_0g8/T4lfYZyZVwE/AAAAAAAAJn8/ugcSPsZG_2Y/s160-c/TestAlbumForQueryFiles02.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDoqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656529313960281697</id><published>2011-09-26T05:01:26.000Z</published><updated>2013-05-11T05:42:06.361Z</updated><app:edited>2013-05-11T05:42:06.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='alternate' type='text/html' href='
 https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles?authkey=Gv1sRgCMTFotGeweT6cg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697?authkey=Gv1sRgCMTFotGeweT6cg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656529313960281697/acl?authkey=Gv1sRgCMTFotGeweT6cg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656529313960281697</gphoto:id><gphoto:name>TestAlbumForQueryFiles</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013286000</gphoto:timestam
 
p><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/TestAlbumForQueryFiles.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-6p9wKSiQbf8/ToAHcQQvxmE/AAAAAAAAI6g/WLzZSL61RzQ/s160-c/TestAlbumForQueryFiles.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;Xip7ImA_&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5656528945499827137</id><published>2011-09-26T05:01:15.000Z</published><updated>2013-05-11T05:42:04.362Z</upd
 ated><app:edited>2013-05-11T05:42:04.362Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Drop Box</title><summary>Default album for newly 
uploaded photos.</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/DropBox?authkey=Gv1sRgCJimnOPo4qP_aA'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137?authkey=Gv1sRgCJimnOPo4qP_aA'/><link
 rel='http://sche
 mas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5656528945499827137/acl?authkey=Gv1sRgCJimnOPo4qP_aA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5656528945499827137</gphoto:id><gphoto:name>DropBox</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1317013275000</gphoto:timestamp><gphoto:numphotos>12</gphoto:numphotos><gphoto:numphotosremaining>988</gphoto:numphotosremaining><gphoto:bytesUsed>211920</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:albumType>Default</gphoto:albumType><media:group><media:content
 url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/DropBox.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><
 media:description type='plain'>Default album for newly uploaded 
photos.</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-I1YjlfQG5kY/ToAHGzo7a8E/AAAAAAAALmQ/YeJ6gUuivA8/s160-c/DropBox.jpg' 
height='160' width='160'/><media:title type='plain'>Drop Box</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760706460596781425</id><published>2012-07-02T22:43:13.000Z</published><updated>2013-05-11T05:42:38.362Z</updated><app:edited>2013-05-11T05:42:38.362Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mb
 w67DytQE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles17?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425?authkey=Gv1sRgCKDo4Mbw67DytQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760706460596781425/acl?authkey=Gv1sRgCKDo4Mbw67DytQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760706460596781425</gphoto:id><gphoto:name>TestAlbumForQueryFiles17</gphoto:name><gphoto:location/><gphoto:access>private
 
</gphoto:access><gphoto:timestamp>1341268993000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/TestAlbumForQueryFiles17.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-jCbAOlu4SwU/T_IkAR8rQXE/AAAAAAAAKs8/LMYVB0SQESc/s160-c/TestAlbumForQueryFiles17.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YDsqeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5760702986482787089</id><published>2012-0
 
7-02T22:29:44.000Z</published><updated>2013-05-11T05:42:34.361Z</updated><app:edited>2013-05-11T05:42:34.361Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album for 
QueryFiles</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbumForQueryFiles15?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?authkey=Gv1sRgCKO5mpeQwZjDHg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089?
 authkey=Gv1sRgCKO5mpeQwZjDHg'/><link rel='http://schemas.google.com/acl/2007#accessControlList' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5760702986482787089/acl?authkey=Gv1sRgCKO5mpeQwZjDHg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5760702986482787089</gphoto:id><gphoto:name>TestAlbumForQueryFiles15</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1341268184000</gphoto:timestamp><gphoto:numphotos>4</gphoto:numphotos><gphoto:numphotosremaining>996</gphoto:numphotosremaining><gphoto:bytesUsed>70640</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/TestAlbumForQueryFiles15.jpg'
 type='image/jpeg' medium='image'/><media:
 credit>libgdata.picasaweb</media:credit><media:description type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-y1OSyupQ3TI/T_Ig2D3WoxE/AAAAAAAAKbI/Jcqk_xxtj-U/s160-c/TestAlbumForQueryFiles15.jpg'
 height='160' width='160'/><media:title type='plain'>Test album for 
QueryFiles</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905633591451744097</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T11:54:30.296Z</updated><app:edited>2013-07-28T11:54:30.296Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/alb
 umid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos55?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097?authkey=Gv1sRgCJaWsta275GJzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905633591451744097/acl?authkey=Gv1sRgCJaWsta275GJzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905633591451744097</gphoto:id><gphoto:name>ThanksgivingPhotos55</gphoto:name><g
 photo:location>Winnipeg, 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/ThanksgivingPhotos55.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-pmMLIzS2Aj4/UfUGdkgYd2E/AAAAAAAAL9s/2v2L2yYDmLQ/s160-c/ThanksgivingPhotos55.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb
 
.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635041987434177</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.375Z</updated><app:edited>2013-07-28T12:00:08.375Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos59?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='edit' type=
 'application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635041987434177/acl?authkey=Gv1sRgCOSa0dKV8uz3hwE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635041987434177</gphoto:id><gphoto:name>ThanksgivingPhotos59</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https
 ://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/ThanksgivingPhotos59.jpg' 
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-YTqHGHexKLY/UfUHyALClsE/AAAAAAAAMAw/Q5ZgS1NABNA/s160-c/ThanksgivingPhotos59.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635046618559681</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.368Z</updated><app:edited>2013-07-28T12:00:09.368Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summa
 ry><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos61?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681?authkey=Gv1sRgCOqknJaSsdXxFA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635046618559681/acl?authkey=Gv1sRgCOqknJaSsdXxFA'/><author><name>libgdat
 
a.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635046618559681</gphoto:id><gphoto:name>ThanksgivingPhotos61</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/ThanksgivingPhotos61.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-L4nk2EiXVJc/UfUHyRbL9ME/AAAAAAAAMA4/50NgPYLQv2U/s160-c/ThanksgivingPhot
 os61.jpg' height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635048265698337</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:08.587Z</updated><app:edited>2013-07-28T12:00:08.587Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos60?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='self' type='ap
 plication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337?authkey=Gv1sRgCPm6muuhnruL2AE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635048265698337/acl?authkey=Gv1sRgCPm6muuhnruL2AE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635048265698337</gphoto:id><gphoto:name>ThanksgivingPhotos60</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremainin
 
g><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/ThanksgivingPhotos60.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NgBV9nWzKgQ/UfUHyXj5TCE/AAAAAAAAMA0/gyOw1o0LsCc/s160-c/ThanksgivingPhotos60.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905635052696078545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:00:09.696Z</updated><app:edited>2013-07-28T12:00:09.696Z</app:edited><category
 
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos62?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545?authkey=Gv1sRgCJ78iPjynMP6bA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905635052696078545/acl?authkey=Gv1sRgCJ78iPjynMP6bA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905635052696078545</gphoto:id><gphoto:name>ThanksgivingPhotos62</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/ThanksgivingPhotos62.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of
  the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-dDzC8AUT39c/UfUHyoELiNE/AAAAAAAAMA8/iK9D08hMeZg/s160-c/ThanksgivingPhotos62.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636964804120545</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KG
 A'/><link rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos67?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545?authkey=Gv1sRgCOPnh9WK0O-KGA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964804120545/acl?authkey=Gv1sRgCOPnh9WK0O-KGA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964804120545</gphoto:id><gphoto:name>ThanksgivingPhotos67</gphoto:name><gphoto:location>Winnipeg,
 MN</gphoto:location><gphoto:acce
 
ss>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/ThanksgivingPhotos67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-URP8xignqeI/UfUJh7OQz-E/AAAAAAAAMEA/uOLQL8yxb8o/s160-c/ThanksgivingPhotos67.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/59
 
05636964871966001</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.315Z</updated><app:edited>2013-07-28T12:07:35.315Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos66?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link
 rel='edit' type='application/atom+xml' href='https://picasaweb.google.com/da
 ta/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001?authkey=Gv1sRgCNqbzKuF-cCeLg'/><link 
rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636964871966001/acl?authkey=Gv1sRgCNqbzKuF-cCeLg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905636964871966001</gphoto:id><gphoto:name>ThanksgivingPhotos66</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAA
 MD8/ShmhXZiX02k/ThanksgivingPhotos66.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description type='plain'>Family photos 
of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-RKs5J2Fv4Xs/UfUJh7ecDTE/AAAAAAAAMD8/ShmhXZiX02k/s160-c/ThanksgivingPhotos66.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905636968138062433</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:07:35.751Z</updated><app:edited>2013-07-28T12:07:35.751Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.co
 m/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos68?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433?authkey=Gv1sRgCPfTjKWOu7_sCg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905636968138062433/acl?authkey=Gv1sRgCPfTjKWOu7_sCg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.p
 
icasaweb</uri></author><gphoto:id>5905636968138062433</gphoto:id><gphoto:name>ThanksgivingPhotos68</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/ThanksgivingPhotos68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-wEsnbQ5ds-Q/UfUJiHpIumE/AAAAAAAAMEE/yJzlfrX0QnM/s160-c/ThanksgivingPhotos68.jpg'
 height='160' width='160'/><media:title type='plain'>
 Thanksgiving photos</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905637896892105825</id><published>2002-10-14T09:58:59.000Z</published><updated>2013-07-28T12:11:12.157Z</updated><app:edited>2013-07-28T12:11:12.157Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Thanksgiving photos</title><summary>Family photos 
of the feast!</summary><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/ThanksgivingPhotos72?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='self' type='application/atom+xml' href='https://picasaweb.google.com/data/entr
 y/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link rel='edit' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825?authkey=Gv1sRgCKvL352GnPmJbw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905637896892105825/acl?authkey=Gv1sRgCKvL352GnPmJbw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905637896892105825</gphoto:id><gphoto:name>ThanksgivingPhotos72</gphoto:name><gphoto:location>Winnipeg,
 
MN</gphoto:location><gphoto:access>private</gphoto:access><gphoto:timestamp>1034589539000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picas
 aweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/ThanksgivingPhotos72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'>Family photos of the feast!</media:description><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Yp2EbjWQTqU/UfUKYLhWxGE/AAAAAAAAMHA/D3vQHf4qmGs/s160-c/ThanksgivingPhotos72.jpg'
 height='160' width='160'/><media:title type='plain'>Thanksgiving 
photos</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
   
diff --git a/gdata/tests/traces/picasaweb/query-all-albums-with-limits 
b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
index 3f0dab4..2a2b817 100644
--- a/gdata/tests/traces/picasaweb/query-all-albums-with-limits
+++ b/gdata/tests/traces/picasaweb/query-all-albums-with-limits
@@ -1,90 +1,90 @@
GET /data/feed/api/user/default?start-index=1&max-results=1& HTTP/1.1
-> Soup-Debug-Timestamp: 1375013824
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 15 (0x9aa0a0), SoupSocket 8 (0x8a45f0)
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 15 (0x78d0a0), SoupSocket 8 (0x7cbd30)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013824
-< Soup-Debug: SoupMessage 15 (0x9aa0a0)
-< Expires: Sun, 28 Jul 2013 12:17:04 GMT
-< Date: Sun, 28 Jul 2013 12:17:04 GMT
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 15 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:29 GMT
+< Date: Tue, 30 Jul 2013 14:06:29 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=EaZYrjbOLjXS; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=A3LRwGsB3KV4Kt628xr6lQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=VTIsSiiz24TI; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=cec8xqmpQbSkm8P0z7tfbQ; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639405060878609</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:03.381Z</updated><app:edited>2013-07-28T12:17:03.381Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for QueryAllAlbums</t
 itle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums34?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609/acl?authkey=Gv1sRgCKzKgZTLsam_JA'/>
 
<author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639405060878609</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/TestAlbum3ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/s160-c/TestAlbum3ForQueryAllAlbums34.jpg'
 height='160' widt
 h='160'/><media:title type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409770390610945</id><published>2013-07-30T14:06:27.000Z</published><updated>2013-07-30T14:06:28.484Z</updated><app:edited>2013-07-30T14:06:28.484Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for QueryAllAlbums</ti
 tle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums65?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945/acl?authkey=Gv1sRgCJalpajqh4yAmw
 
E'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409770390610945</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums65</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193187000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/TestAlbum4ForQueryAllAlbums65.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/s160-c/TestAlbum4ForQueryAllAlbums65.jpg'
 height='160' 
 width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry></feed>
   
GET /data/feed/api/user/default?start-index=2&max-results=1& HTTP/1.1
-> Soup-Debug-Timestamp: 1375013824
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 16 (0x9aa550), SoupSocket 8 (0x8a45f0)
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 16 (0x78d550), SoupSocket 8 (0x7cbd30)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013825
-< Soup-Debug: SoupMessage 16 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:05 GMT
-< Date: Sun, 28 Jul 2013 12:17:05 GMT
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 16 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:29 GMT
+< Date: Tue, 30 Jul 2013 14:06:29 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=H87KgnXd0-Rf; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=3Ts1kPPJXbgOojCMOF7k4w; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=XEIIwGhic-hF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=yHPP3J7OLwaJSj-Qo-7wSA; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><link
 rel='previous' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=3&amp;max-results=1'/><author><name>libgdata.pic
 asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>2</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639408808745057</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:04.032Z</updated><app:edited>2013-07-28T12:17:04.032Z</app:e
 dited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums33?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057/acl?authkey=Gv1sRgCKL_1OWnlunsdA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639408808745057</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/TestAlbum4ForQueryAllAlbums33.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:t
 humbnail 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/s160-c/TestAlbum4ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=2&amp;max-results=1'/><link
 rel='previous' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=3&amp;max-results=1'/><author><name>libgdata.pic
 asaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>2</openSearch:startIndex><openSearch:itemsPerPage>1</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409767655144225</id><published>2013-07-30T14:06:26.000Z</published><updated>2013-07-30T14:06:27.337Z</updated><app:edited>2013-07-30T14:06:27.337Z</app:ed
 ited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums66?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='appl
 ication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225/acl?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409767655144225</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums66</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193186000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/TestAlbum3ForQueryAllAlbums66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:th
 umbnail 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/s160-c/TestAlbum3ForQueryAllAlbums66.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry></feed>
   
GET /data/feed/api/user/default?start-index=1&max-results=3& HTTP/1.1
-> Soup-Debug-Timestamp: 1375013825
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 17 (0x9aa550), SoupSocket 8 (0x8a45f0)
+> Soup-Debug-Timestamp: 1375193189
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 17 (0x78d550), SoupSocket 8 (0x7cbd30)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013825
-< Soup-Debug: SoupMessage 17 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:05 GMT
-< Date: Sun, 28 Jul 2013 12:17:05 GMT
+< Soup-Debug-Timestamp: 1375193189
+< Soup-Debug: SoupMessage 17 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:30 GMT
+< Date: Tue, 30 Jul 2013 14:06:30 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=hshyt-h8sx93; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=p4B7bGUxjR6UOFVQHTTlWg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=es0kWzlJdhrP; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=z83HUoAZOGYXavkr0AMHIg; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=feed
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8GRX44eip7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:04 GMT
+< ETag: W/"CUYMSXozfCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:28 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GRX44eip7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-28T12:17:04.032Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=3'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=4&amp;max-results=3'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>3</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639405060878609</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:03.381Z</updated><app:edited>2013-07-28T12:17:03.381Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for QueryAllAlbums</t
 itle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums34?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609?authkey=Gv1sRgCKzKgZTLsam_JA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639405060878609/acl?authkey=Gv1sRgCKzKgZTLsam_JA'/>
 
<author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639405060878609</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums34</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/TestAlbum3ForQueryAllAlbums34.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-Rjvn82OCuvk/UfULv94z8RE/AAAAAAAAMH4/Blxm7pPIQ3Q/s160-c/TestAlbum3ForQueryAllAlbums34.jpg'
 height='160' widt
 h='160'/><media:title type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639408808745057</id><published>2013-07-28T12:17:03.000Z</published><updated>2013-07-28T12:17:04.032Z</updated><app:edited>2013-07-28T12:17:04.032Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums33?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='self' type='application/atom+xml' href='https:
 
//picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057?authkey=Gv1sRgCKL_1OWnlunsdA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639408808745057/acl?authkey=Gv1sRgCKL_1OWnlunsdA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639408808745057</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums33</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013823000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>li
 
bgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/TestAlbum4ForQueryAllAlbums33.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-GAEM98NA8SY/UfULwL2X2GE/AAAAAAAAMH8/iWA8VP0j-6w/s160-c/TestAlbum4ForQueryAllAlbums33.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639398993821281</id><published>2013-07-28T12:17:02.000Z</published><updated>2013-07-28T12:17:02.582Z</updated><app:edited>2013-07-28T12:17:02.582Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.goo
 gle.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums35?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639398993821281?authkey=Gv1sRgCPOWq9yH4dCoWg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.pica
 
saweb/albumid/5905639398993821281/acl?authkey=Gv1sRgCPOWq9yH4dCoWg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639398993821281</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums35</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013822000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-Bh7LExZwN3g/UfULvnST_mE/AAAAAAAAMH0/nD9ghGbhCmM/TestAlbum2ForQueryAllAlbums35.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-Bh7LExZwN3g/UfULvnST_mE/AAAAAAAAMH0/nD
 9ghGbhCmM/s160-c/TestAlbum2ForQueryAllAlbums35.jpg' height='160' width='160'/><media:title type='plain'>Test 
album 2 for QueryAllAlbums</media:title></media:group></entry></feed>
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMSXozfCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:28.484Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=3'/><link
 rel='next' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=4&amp;max-results=3'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' uri='http://picasaweb.google.com/'>Picasaweb</gene
 
rator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>3</openSearch:itemsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409770390610945</id><published>2013-07-30T14:06:27.000Z</published><updated>2013-07-30T14:06:28.484Z</updated><app:edited>2013-07-30T14:06:28.484Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for QueryAllAlbums</ti
 tle><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums65?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945?authkey=Gv1sRgCJalpajqh4yAmwE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409770390610945/acl?authkey=Gv1sRgCJalpajqh4yAmw
 
E'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409770390610945</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums65</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193187000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/TestAlbum4ForQueryAllAlbums65.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-QZYiZ10BaFg/UffIZIYHZAE/AAAAAAAAMdE/Ee7V_yAqIGI/s160-c/TestAlbum4ForQueryAllAlbums65.jpg'
 height='160' 
 width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409767655144225</id><published>2013-07-30T14:06:26.000Z</published><updated>2013-07-30T14:06:27.337Z</updated><app:edited>2013-07-30T14:06:27.337Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums66?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='self' type='application/atom+xml' href='ht
 
tps://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409767655144225/acl?authkey=Gv1sRgCMeXr-Cn9eaBeg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409767655144225</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums66</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193186000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:use
 
r>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/TestAlbum3ForQueryAllAlbums66.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-6FD1zjHLAwI/UffIY-L7eyE/AAAAAAAAMdA/PbAySOTqjDI/s160-c/TestAlbum3ForQueryAllAlbums66.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409760167466529</id><published>2013-07-30T14:06:25.000Z</published><updated>2013-07-30T14:06:26.270Z</updated><app:edited>2013-07-30T14:06:26.270Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas
 .google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums67?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409760167466529?authkey=Gv1sRgCIG9pv3SjaafUw'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.
 
picasaweb/albumid/5906409760167466529/acl?authkey=Gv1sRgCIG9pv3SjaafUw'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409760167466529</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums67</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193185000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-TgBhr7RaKPg/UffIYiSuliE/AAAAAAAAMc8/GItVseZLgPY/TestAlbum2ForQueryAllAlbums67.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-TgBhr7RaKPg/UffIYiSuliE/AAAAAAAAMc
 8/GItVseZLgPY/s160-c/TestAlbum2ForQueryAllAlbums67.jpg' height='160' width='160'/><media:title 
type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry></feed>
   
diff --git a/gdata/tests/traces/picasaweb/query-user b/gdata/tests/traces/picasaweb/query-user
index a64357e..1d71c46 100644
--- a/gdata/tests/traces/picasaweb/query-user
+++ b/gdata/tests/traces/picasaweb/query-user
@@ -1,30 +1,30 @@
GET /data/entry/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013821
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 10 (0x9aa0a0), SoupSocket 4 (0x8a4470)
+> Soup-Debug-Timestamp: 1375193184
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 10 (0x78d0a0), SoupSocket 4 (0x7cbc70)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013821
-< Soup-Debug: SoupMessage 10 (0x9aa0a0)
-< Expires: Sun, 28 Jul 2013 12:17:01 GMT
-< Date: Sun, 28 Jul 2013 12:17:01 GMT
+< Soup-Debug-Timestamp: 1375193184
+< Soup-Debug: SoupMessage 10 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:24 GMT
+< Date: Tue, 30 Jul 2013 14:06:24 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=H45PPS7F7rSI; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=Z7mBRUZkXQpXMuHsytPDMA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=1WZ1nEPscX1U; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=Ya5gyRenuUJuUww91WNdQg; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8GQX0zfyp7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:00 GMT
+< ETag: W/"CUYMQnk-eCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:23 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8GQX0zfyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-28T12:17:01.589Z</published><updated>2013-07-28T12:17:00.387Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYMQnk-eCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:06:24.431Z</published><updated>2013-07-30T14:06:23.750Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
   
diff --git a/gdata/tests/traces/picasaweb/query_all_albums-async 
b/gdata/tests/traces/picasaweb/query_all_albums-async
new file mode 100644
index 0000000..974259e
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_all_albums-async
@@ -0,0 +1,30 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193198
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 26 (0x7fffd800ebb0), SoupSocket 12 (0x7cba30)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193199
+< Soup-Debug: SoupMessage 26 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:39 GMT
+< Date: Tue, 30 Jul 2013 14:06:39 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=qLrx0e6LARca; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=fOi3cjU-PG96GUZZOxczRQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUYNRngzeCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:37 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation 
b/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation
new file mode 100644
index 0000000..51dd5e8
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_all_albums-async-cancellation
@@ -0,0 +1,98 @@
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 44 (0x7fffd800ef70), SoupSocket 20 (0x7cbbb0)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193215
+< Soup-Debug: SoupMessage 44 (0x7fffd800ef70)
+< Expires: Tue, 30 Jul 2013 14:06:55 GMT
+< Date: Tue, 30 Jul 2013 14:06:55 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=h3Z5_WgR42lQ; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=D6hIRXBsA0yB87bDm6SEyw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 45 (0x7fffd800ebb0), SoupSocket 19 (0x7cbc70)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+> Soup-Debug-Timestamp: 1375193215
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 45 (0x7fffd800ebb0), SoupSocket 21 (0x7fffe0028620), 
restarted
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193216
+< Soup-Debug: SoupMessage 45 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=aIyQglQCFD2b; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=PMvjYSKnKlSvQ55tsE3I1Q; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
+> GET /data/feed/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193216
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 46 (0x7fffe4002aa0), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193216
+< Soup-Debug: SoupMessage 46 (0x7fffe4002aa0)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=i7iDLaToySIx; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=5_28NXYuJhKbMPGuG7rpMA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFRXg6fCp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUYDSHc4fCp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><updated>2013-07-30T14:06:19.934Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><subtitle/><icon>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</icon><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' h
 ref='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link 
rel='http://schemas.google.com/photos/2007#slideshow' type='application/x-shockwave-flash' 
href='https://static.googleusercontent.com/external_content/picasaweb.googleusercontent.com/slideshow.swf?host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?alt%3Drss'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb?start-index=1&amp;max-results=1000'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><generator
 version='1.00' 
uri='http://picasaweb.google.com/'>Picasaweb</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>1000</openSearch:i
 
temsPerPage><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum><entry
 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://picasaweb.google
 .com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id
<gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content

url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry><entry gd:etag='&quot;YD0qeyI.&quot;'><id>htt
 
ps://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='app
 lication/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 url='https://lh3.googleusercontent.c
 om/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg' type='image/jpeg' 
medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/
 2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgd
 
ata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for QueryAllAlbums</media:titl
 e></media:group></entry><entry 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' 
href='https://picasaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/590640
 9867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto
 :nickname><media:group><media:content 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry></feed>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user-async b/gdata/tests/traces/picasaweb/query_user-async
similarity index 63%
rename from gdata/tests/traces/picasaweb/query-user-async
rename to gdata/tests/traces/picasaweb/query_user-async
index a342098..1a4ed57 100644
--- a/gdata/tests/traces/picasaweb/query-user-async
+++ b/gdata/tests/traces/picasaweb/query_user-async
@@ -1,30 +1,30 @@
GET /data/entry/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013862
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 56 (0x7fffe0025580), SoupSocket 25 (0x7fffe00266e0)
+> Soup-Debug-Timestamp: 1375193219
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 51 (0x7fffd800ebb0), SoupSocket 21 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013862
-< Soup-Debug: SoupMessage 56 (0x7fffe0025580)
-< Expires: Sun, 28 Jul 2013 12:17:42 GMT
-< Date: Sun, 28 Jul 2013 12:17:42 GMT
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 51 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:06:59 GMT
+< Date: Tue, 30 Jul 2013 14:06:59 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=6CQUVItd_ZeX; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=qlqHQaT74ZIgQUgGrSnHLA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=jcMsmLBVV-eg; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=-LbMkhBBJ5dAqLw2XAcZaw; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"CU8CQX84fyp7ImA9WhFWEEw."
-< Last-Modified: Sun, 28 Jul 2013 12:17:40 GMT
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CU8CQX84fyp7ImA9WhFWEEw.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-28T12:17:42.237Z</published><updated>2013-07-28T12:17:40.137Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:06:59.656Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
   
diff --git a/gdata/tests/traces/picasaweb/query_user-async-cancellation 
b/gdata/tests/traces/picasaweb/query_user-async-cancellation
new file mode 100644
index 0000000..d66d78b
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user-async-cancellation
@@ -0,0 +1,90 @@
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193219
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 52 (0x7fffd800ef70), SoupSocket 21 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 52 (0x7fffd800ef70)
+< Expires: Tue, 30 Jul 2013 14:07:00 GMT
+< Date: Tue, 30 Jul 2013 14:07:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=IKpCLVGNcEjO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=PR_2dH-tKmRcA9vklKNYyg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:00.148Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193220
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 53 (0x7fffd800e9d0), SoupSocket 22 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193220
+< Soup-Debug: SoupMessage 53 (0x7fffd800e9d0)
+< Expires: Tue, 30 Jul 2013 14:07:00 GMT
+< Date: Tue, 30 Jul 2013 14:07:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=HkFgClQx6DR7; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=WwF3IuZHk6M_LyWlV6Sreg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:00.981Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
+> GET /data/entry/api/user/default HTTP/1.1
+> Soup-Debug-Timestamp: 1375193220
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 54 (0x7fffd800ee80), SoupSocket 23 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193220
+< Soup-Debug: SoupMessage 54 (0x7fffd800ee80)
+< Expires: Tue, 30 Jul 2013 14:07:01 GMT
+< Date: Tue, 30 Jul 2013 14:07:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=QolHWxCYxSBu; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=qVMSBPHSqwkF44ZkhSEYqQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"CUUFSXc6fyp7ImA9WhFWEUQ."
+< Last-Modified: Tue, 30 Jul 2013 14:06:58 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CUUFSXc6fyp7ImA9WhFWEUQ.&quot;'><id>https://picasaweb.google.com/data/feed/user/libgdata.picasaweb</id><published>2013-07-30T14:07:01.119Z</published><updated>2013-07-30T14:06:58.917Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>libgdata.picasaweb</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/libgdata.picasaweb'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgda
 
ta.picasaweb</uri></author><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-1kdcGyvOb8c/AAAAAAAAAAA/AAAAAAAADJo/Aka-7qukB7s/s64-c/libgdata.picasaweb.jpg</gphoto:thumbnail><gphoto:quotalimit>16106127360</gphoto:quotalimit><gphoto:quotacurrent>1796070</gphoto:quotacurrent><gphoto:maxPhotosPerAlbum>1000</gphoto:maxPhotosPerAlbum></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/query-user-by-username-async 
b/gdata/tests/traces/picasaweb/query_user_by_username-async
similarity index 63%
rename from gdata/tests/traces/picasaweb/query-user-by-username-async
rename to gdata/tests/traces/picasaweb/query_user_by_username-async
index 03cbe40..2df9738 100644
--- a/gdata/tests/traces/picasaweb/query-user-by-username-async
+++ b/gdata/tests/traces/picasaweb/query_user_by_username-async
@@ -1,30 +1,30 @@
GET /data/entry/api/user/philip.withnall HTTP/1.1
-> Soup-Debug-Timestamp: 1375013863
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 60 (0x7fffe4014ac0), SoupSocket 27 (0x7fffe00266e0)
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 55 (0x7fffe40190e0), SoupSocket 23 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013863
-< Soup-Debug: SoupMessage 60 (0x7fffe4014ac0)
-< Expires: Sun, 28 Jul 2013 12:17:43 GMT
-< Date: Sun, 28 Jul 2013 12:17:43 GMT
+< Soup-Debug-Timestamp: 1375193221
+< Soup-Debug: SoupMessage 55 (0x7fffe40190e0)
+< Expires: Tue, 30 Jul 2013 14:07:01 GMT
+< Date: Tue, 30 Jul 2013 14:07:01 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=9gYjgw3WA56_; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=HhIRryplQTQecQ-Vx9jM2A; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=81v56Gedn07l; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=NjKbWgZAAKXezlt5U_PSwQ; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version, Cookie
 < GData-Version: 2.0
-< ETag: W/"DkACRXc8fip7ImA9WhFXEU4."
-< Last-Modified: Thu, 18 Jul 2013 08:06:04 GMT
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DkACRXc8fip7ImA9WhFXEU4.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-28T12:17:43.416Z</published><updated>2013-07-18T08:06:04.976Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:01.439Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
   
diff --git a/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation 
b/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation
new file mode 100644
index 0000000..0901989
--- /dev/null
+++ b/gdata/tests/traces/picasaweb/query_user_by_username-async-cancellation
@@ -0,0 +1,120 @@
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 56 (0x7fffd800e9d0), SoupSocket 23 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193221
+< Soup-Debug: SoupMessage 56 (0x7fffd800e9d0)
+< Expires: Tue, 30 Jul 2013 14:07:02 GMT
+< Date: Tue, 30 Jul 2013 14:07:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=5lwIlSNLHpIB; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=ldGTkBt8vrc2Wx4z2UA85w; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:02.051Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193221
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 57 (0x7fffd800ee80), SoupSocket 24 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193222
+< Soup-Debug: SoupMessage 57 (0x7fffd800ee80)
+< Expires: Tue, 30 Jul 2013 14:07:02 GMT
+< Date: Tue, 30 Jul 2013 14:07:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=VGPDpVlj9GeF; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=o7C_5n27tKio2U7h48GTDQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:02.661Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193222
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 58 (0x78d730), SoupSocket 25 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193223
+< Soup-Debug: SoupMessage 58 (0x78d730)
+< Expires: Tue, 30 Jul 2013 14:07:03 GMT
+< Date: Tue, 30 Jul 2013 14:07:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=vpLKBUGpmhn6; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=phcGxLajQeViqEBcmO41qQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:03.504Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
+> GET /data/entry/api/user/philip.withnall HTTP/1.1
+> Soup-Debug-Timestamp: 1375193223
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 59 (0x7fffd800ebb0), SoupSocket 26 (0x7fffe0028620)
+> Host: picasaweb.google.com
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
+> GData-Version: 2
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375193223
+< Soup-Debug: SoupMessage 59 (0x7fffd800ebb0)
+< Expires: Tue, 30 Jul 2013 14:07:03 GMT
+< Date: Tue, 30 Jul 2013 14:07:03 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Set-Cookie: _rtok=NNZKt6daphG5; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=MbP0ESEWbNzTAnUb_c7TMw; Domain=.google.com; Path=/; Secure; HttpOnly
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Vary: Accept, X-GData-Authorization, GData-Version, Cookie
+< GData-Version: 2.0
+< ETag: W/"DEEHR38yeyp7ImA9WhFWEU0."
+< Last-Modified: Mon, 29 Jul 2013 14:03:56 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;DEEHR38yeyp7ImA9WhFWEU0.&quot;'><id>https://picasaweb.google.com/data/feed/user/104200312198892774147</id><published>2013-07-30T14:07:03.734Z</published><updated>2013-07-29T14:03:56.193Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#user'/><title>104200312198892774147</title><summary/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/104200312198892774147'/><link rel='alternate' 
type='text/html' href='https://picasaweb.google.com/104200312198892774147'/><link rel='self' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/104200312198892774147'/><author><name>Philip 
Withnall</name><uri>https://picasaweb.googl
 
e.com/104200312198892774147</uri></author><gphoto:user>104200312198892774147</gphoto:user><gphoto:nickname>Philip
 
Withnall</gphoto:nickname><gphoto:thumbnail>https://lh6.googleusercontent.com/-HrhxnzxTjp8/AAAAAAAAAAI/AAAAAAAAAAA/HcBOyJqasow/s64-c/104200312198892774147.jpg</gphoto:thumbnail></entry>
+  
diff --git a/gdata/tests/traces/picasaweb/setup-query-all-albums 
b/gdata/tests/traces/picasaweb/setup-query-all-albums
index 89afb32..303e315 100644
--- a/gdata/tests/traces/picasaweb/setup-query-all-albums
+++ b/gdata/tests/traces/picasaweb/setup-query-all-albums
@@ -1,136 +1,136 @@
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013852
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 40 (0x9aa550), SoupSocket 17 (0x8a42f0)
+> Soup-Debug-Timestamp: 1375193211
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 40 (0x78d550), SoupSocket 17 (0x7cba30)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 1 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013852000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 1 for QueryAllAlbums</media:title></media:group></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 1 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 1 for QueryAllAlbums</media:title></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013853
-< Soup-Debug: SoupMessage 40 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:33 GMT
-< Date: Sun, 28 Jul 2013 12:17:33 GMT
+< Soup-Debug-Timestamp: 1375193212
+< Soup-Debug: SoupMessage 40 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:52 GMT
+< Date: Tue, 30 Jul 2013 14:06:52 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=u7cRCnVTblvG; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=jS_w-_laZ_L0M-A75AHPPA; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=Oz5kBY9r-bOe; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=uHYyW_yk_rtx3oUjvBOZYg; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639529199279457</id><published>2013-07-28T12:17:32.000Z</published><updated>2013-07-28T12:17:32.580Z</updated><app:edited>2013-07-28T12:17:32.580Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums40?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457/acl?authkey=Gv1sRgCI_HnNDHxaOxzgE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639529199279457</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums40</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013852000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/TestAlbum1ForQueryAllAlbums40.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-kN8IXLSq27s/UfUL3MVtnWE/AAAAAAAAMJQ/_ygJNdZP1qs/s160-c/TestAlbum1ForQueryAllAlbums40.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409867090978209</id><published>2013-07-30T14:06:51.000Z</published><updated>2013-07-30T14:06:51.971Z</updated><app:edited>2013-07-30T14:06:51.971Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 1 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum1ForQueryAllAlbums72?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209/acl?authkey=Gv1sRgCMGwmsnnoJ6GgAE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409867090978209</gphoto:id><gphoto:name>TestAlbum1ForQueryAllAlbums72</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193211000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/TestAlbum1ForQueryAllAlbums72.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-dghQiMuTN2c/UffIewnR5aE/AAAAAAAAMeY/1BIIg4oW3qw/s160-c/TestAlbum1ForQueryAllAlbums72.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 1 for 
QueryAllAlbums</media:title></media:group></entry>
   
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013853
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 41 (0x9aa550), SoupSocket 18 (0x7fffe00261a0)
+> Soup-Debug-Timestamp: 1375193212
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 41 (0x78d550), SoupSocket 18 (0x7fffdc0043c0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 2 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013853000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 2 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 2 for QueryAllAlbums</media:title></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013854
-< Soup-Debug: SoupMessage 41 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:34 GMT
-< Date: Sun, 28 Jul 2013 12:17:34 GMT
+< Soup-Debug-Timestamp: 1375193213
+< Soup-Debug: SoupMessage 41 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:53 GMT
+< Date: Tue, 30 Jul 2013 14:06:53 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=rpj3FBFp2MNJ; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=wDgTi5g4FM4fxFfzc3iqPg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=CFnNibO9gAqe; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=YFVu1qVaPdljemBM2wHzOg; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639533981554817</id><published>2013-07-28T12:17:33.000Z</published><updated>2013-07-28T12:17:33.515Z</updated><app:edited>2013-07-28T12:17:33.515Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums38?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817/acl?authkey=Gv1sRgCLyQw8yU1ouNsQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639533981554817</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums38</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013853000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/TestAlbum2ForQueryAllAlbums38.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/--hTWnRXVTqg/UfUL3eJ5WIE/AAAAAAAAMJU/Wu1WMhdlhbc/s160-c/TestAlbum2ForQueryAllAlbums38.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409873513866033</id><published>2013-07-30T14:06:52.000Z</published><updated>2013-07-30T14:06:52.851Z</updated><app:edited>2013-07-30T14:06:52.851Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 2 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum2ForQueryAllAlbums70?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033/acl?authkey=Gv1sRgCMLm1Ljg2tqqIA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409873513866033</gphoto:id><gphoto:name>TestAlbum2ForQueryAllAlbums70</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193212000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/TestAlbum2ForQueryAllAlbums70.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh6.googleusercontent.com/-4Whv1UHATRo/UffIfIinYzE/AAAAAAAAMec/PtrYZnVuv6Y/s160-c/TestAlbum2ForQueryAllAlbums70.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 2 for 
QueryAllAlbums</media:title></media:group></entry>
   
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013854
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 42 (0x9aa0a0), SoupSocket 19 (0x8a43b0)
+> Soup-Debug-Timestamp: 1375193213
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 42 (0x78d0a0), SoupSocket 19 (0x7cbc70)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 3 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013854000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 3 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 3 for QueryAllAlbums</media:title></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013855
-< Soup-Debug: SoupMessage 42 (0x9aa0a0)
-< Expires: Sun, 28 Jul 2013 12:17:34 GMT
-< Date: Sun, 28 Jul 2013 12:17:34 GMT
+< Soup-Debug-Timestamp: 1375193214
+< Soup-Debug: SoupMessage 42 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:54 GMT
+< Date: Tue, 30 Jul 2013 14:06:54 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=_P23k8y66PS1; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=cmjOPMyerJehkj0GbiNZYg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=vBpQdJXcxFY3; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=J3KSb9f0pAjHbbrNDUM9CA; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639534651911457</id><published>2013-07-28T12:17:34.000Z</published><updated>2013-07-28T12:17:34.363Z</updated><app:edited>2013-07-28T12:17:34.363Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='alternate' type='text/html' href='https://pic
 asaweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums37?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457/acl?authkey=Gv1sRgCIHrp_-g6Ob2vQE'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639534651911457</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums37</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013854000</gphoto:t
 
imestamp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/TestAlbum3ForQueryAllAlbums37.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-01e4GIsAHkA/UfUL3gpuLSE/AAAAAAAAMJY/_ph8067G_-M/s160-c/TestAlbum3ForQueryAllAlbums37.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409876619235281</id><published>2013-07-30T14:06:53.000Z</published><updated>2013-07-30T14:06:53.653Z</updated><app:edited>2013-07-30T14:06:53.653Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 3 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum3ForQueryAllAlbums69?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281/acl?authkey=Gv1sRgCPmiyez0rYT-Qg'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409876619235281</gphoto:id><gphoto:name>TestAlbum3ForQueryAllAlbums69</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193213000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/TestAlbum3ForQueryAllAlbums69.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh3.googleusercontent.com/-NWEN_d_Rhf4/UffIfUG_j9E/AAAAAAAAMeg/GF0PsCeCr-A/s160-c/TestAlbum3ForQueryAllAlbums69.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 3 for 
QueryAllAlbums</media:title></media:group></entry>
   
POST /data/feed/api/user/default HTTP/1.1
-> Soup-Debug-Timestamp: 1375013855
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 43 (0x9aa190), SoupSocket 20 (0x8a4470)
+> Soup-Debug-Timestamp: 1375193214
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 43 (0x78d190), SoupSocket 20 (0x7cbbb0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
Content-Type: application/atom+xml
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

-> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 4 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013855000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 4 for QueryAllAlbums</media:title></media:group></entry>
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:georss='http://www.georss.org/georss' 
xmlns:gml='http://www.opengis.net/gml' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/'><title type='text'>Test 
album 4 for QueryAllAlbums</title><rights>private</rights><category 
term='http://schemas.google.com/photos/2007#album' 
scheme='http://schemas.google.com/g/2005#kind'/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timestamp><gphoto:commentingEnabled>false</gphoto:commentingEnabled><media:group><media:title
 type='plain'>Test album 4 for QueryAllAlbums</media:title></media:group></entry>
   
 < HTTP/1.1 201 Created
-< Soup-Debug-Timestamp: 1375013855
-< Soup-Debug: SoupMessage 43 (0x9aa190)
-< Expires: Sun, 28 Jul 2013 12:17:35 GMT
-< Date: Sun, 28 Jul 2013 12:17:35 GMT
+< Soup-Debug-Timestamp: 1375193215
+< Soup-Debug: SoupMessage 43 (0x78d190)
+< Expires: Tue, 30 Jul 2013 14:06:55 GMT
+< Date: Tue, 30 Jul 2013 14:06:55 GMT
 < Cache-control: private, max-age=0, must-revalidate, no-transform
-< Set-Cookie: _rtok=p_ozACZ2k0Eq; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=qrvRC_MzSX194nWKNCY6eQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=tJdUCcJ5mrOd; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=8DO6vtUhqhM2zmMYchOFBg; Domain=.google.com; Path=/; Secure; HttpOnly
 < Content-Type: application/atom+xml; charset=UTF-8; type=entry
 < Vary: Accept, X-GData-Authorization, GData-Version
 < GData-Version: 2.0
 < ETag: "YD0qeyI."
-< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ
-< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ
+< Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA
+< Content-Location: 
https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
 < X-XSS-Protection: 1; mode=block
 < Server: GSE
 < Transfer-Encoding: chunked
 < 
-< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5905639542445656401</id><published>2013-07-28T12:17:35.000Z</published><updated>2013-07-28T12:17:35.192Z</updated><app:edited>2013-07-28T12:17:35.192Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums36?authkey=Gv1sRgCIi65tzhvtybNQ'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401/acl?authkey=Gv1sRgCIi65tzhvtybNQ'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5905639542445656401</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums36</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375013855000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/TestAlbum4ForQueryAllAlbums36.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh5.googleusercontent.com/-4uXO2uUNoZs/UfUL39r5SVE/AAAAAAAAMJc/RrgYLArel0Y/s160-c/TestAlbum4ForQueryAllAlbums36.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry>
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gphoto='http://schemas.google.com/photos/2007' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;YD0qeyI.&quot;'><id>https://picasaweb.google.com/data/entry/user/libgdata.picasaweb/albumid/5906409880413253681</id><published>2013-07-30T14:06:54.000Z</published><updated>2013-07-30T14:06:54.614Z</updated><app:edited>2013-07-30T14:06:54.614Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/photos/2007#album'/><title>Test album 4 for 
QueryAllAlbums</title><summary/><rights>private</rights><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' 
href='https://picasaweb.google.com/data/feed/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='alternate' type='text/html' href='https://pica
 saweb.google.com/libgdata.picasaweb/TestAlbum4ForQueryAllAlbums68?authkey=Gv1sRgCOSEzMfX0feeQA'/><link 
rel='self' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='edit' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA'/><link
 rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' 
href='https://picasaweb.google.com/data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681/acl?authkey=Gv1sRgCOSEzMfX0feeQA'/><author><name>libgdata.picasaweb</name><uri>https://picasaweb.google.com/libgdata.picasaweb</uri></author><gphoto:id>5906409880413253681</gphoto:id><gphoto:name>TestAlbum4ForQueryAllAlbums68</gphoto:name><gphoto:location/><gphoto:access>private</gphoto:access><gphoto:timestamp>1375193214000</gphoto:timest
 
amp><gphoto:numphotos>0</gphoto:numphotos><gphoto:numphotosremaining>1000</gphoto:numphotosremaining><gphoto:bytesUsed>0</gphoto:bytesUsed><gphoto:user>libgdata.picasaweb</gphoto:user><gphoto:nickname>libgdata.picasaweb</gphoto:nickname><media:group><media:content
 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/TestAlbum4ForQueryAllAlbums68.jpg'
 type='image/jpeg' medium='image'/><media:credit>libgdata.picasaweb</media:credit><media:description 
type='plain'/><media:keywords/><media:thumbnail 
url='https://lh4.googleusercontent.com/-Dj-tuEB-sz4/UffIfiPjsDE/AAAAAAAAMek/VnTLegFlzSc/s160-c/TestAlbum4ForQueryAllAlbums68.jpg'
 height='160' width='160'/><media:title type='plain'>Test album 4 for 
QueryAllAlbums</media:title></media:group></entry>
   
diff --git a/gdata/tests/traces/picasaweb/teardown-insert-album 
b/gdata/tests/traces/picasaweb/teardown-insert-album
index 80c1b2f..f96602c 100644
--- a/gdata/tests/traces/picasaweb/teardown-insert-album
+++ b/gdata/tests/traces/picasaweb/teardown-insert-album
@@ -1,21 +1,21 @@
-> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639602363627073?authkey=Gv1sRgCMm47L7KqunRHA 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375013870
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 69 (0x7fffe00250d0), SoupSocket 32 (0x7fffe4017170)
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409948133134593?authkey=Gv1sRgCNOliffP6fuuCQ 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193230
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 67 (0x7fffe40191d0), SoupSocket 30 (0x7fffdc0046c0)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
If-Match: "YD0qeyI."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013871
-< Soup-Debug: SoupMessage 69 (0x7fffe00250d0)
-< Expires: Sun, 28 Jul 2013 12:17:50 GMT
-< Date: Sun, 28 Jul 2013 12:17:50 GMT
+< Soup-Debug-Timestamp: 1375193231
+< Soup-Debug: SoupMessage 67 (0x7fffe40191d0)
+< Expires: Tue, 30 Jul 2013 14:07:10 GMT
+< Date: Tue, 30 Jul 2013 14:07:10 GMT
 < Cache-control: private, max-age=0, must-revalidate
-< Set-Cookie: _rtok=-E8Xa3nEwax4; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=YOA3clVv52F3sodQUPHDkg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=r1_n-6BVLIsW; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=3dBj2CkqejEkgZ1nrLkaGg; Domain=.google.com; Path=/; Secure; HttpOnly
 < GData-Version: 2.0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
diff --git a/gdata/tests/traces/picasaweb/teardown-query-all-albums 
b/gdata/tests/traces/picasaweb/teardown-query-all-albums
index b5f9284..2d07cd2 100644
--- a/gdata/tests/traces/picasaweb/teardown-query-all-albums
+++ b/gdata/tests/traces/picasaweb/teardown-query-all-albums
@@ -1,21 +1,21 @@
-> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639529199279457?authkey=Gv1sRgCI_HnNDHxaOxzgE 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375013857
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 48 (0x9aa190), SoupSocket 22 (0x7fffe00266e0)
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409867090978209?authkey=Gv1sRgCMGwmsnnoJ6GgAE 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193216
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 47 (0x78d190), SoupSocket 21 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
If-Match: "YD0qeyI."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013858
-< Soup-Debug: SoupMessage 48 (0x9aa190)
-< Expires: Sun, 28 Jul 2013 12:17:37 GMT
-< Date: Sun, 28 Jul 2013 12:17:37 GMT
+< Soup-Debug-Timestamp: 1375193217
+< Soup-Debug: SoupMessage 47 (0x78d190)
+< Expires: Tue, 30 Jul 2013 14:06:56 GMT
+< Date: Tue, 30 Jul 2013 14:06:56 GMT
 < Cache-control: private, max-age=0, must-revalidate
-< Set-Cookie: _rtok=35al8_TCIFmg; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=swlYOpOIsDSX0FAaGCI3Rg; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=jidlGO74otNO; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=y7RNVE_2yfziSmfv5s4SiA; Domain=.google.com; Path=/; Secure; HttpOnly
 < GData-Version: 2.0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -25,24 +25,24 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639533981554817?authkey=Gv1sRgCLyQw8yU1ouNsQE 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375013858
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 49 (0x9aa0a0), SoupSocket 22 (0x7fffe00266e0)
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409873513866033?authkey=Gv1sRgCMLm1Ljg2tqqIA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193217
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 48 (0x78d0a0), SoupSocket 21 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
If-Match: "YD0qeyI."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013859
-< Soup-Debug: SoupMessage 49 (0x9aa0a0)
-< Expires: Sun, 28 Jul 2013 12:17:38 GMT
-< Date: Sun, 28 Jul 2013 12:17:38 GMT
+< Soup-Debug-Timestamp: 1375193217
+< Soup-Debug: SoupMessage 48 (0x78d0a0)
+< Expires: Tue, 30 Jul 2013 14:06:57 GMT
+< Date: Tue, 30 Jul 2013 14:06:57 GMT
 < Cache-control: private, max-age=0, must-revalidate
-< Set-Cookie: _rtok=A-ovrjIIbIWs; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=AVaY-dyCjkcFF4kD9oQMag; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=ervPcy0WRqj7; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=oqxPfDw0j5QF3AgVSK1t9w; Domain=.google.com; Path=/; Secure; HttpOnly
 < GData-Version: 2.0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -52,24 +52,24 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639534651911457?authkey=Gv1sRgCIHrp_-g6Ob2vQE 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375013859
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 50 (0x9aa550), SoupSocket 22 (0x7fffe00266e0)
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409876619235281?authkey=Gv1sRgCPmiyez0rYT-Qg 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193217
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 49 (0x78d550), SoupSocket 21 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
If-Match: "YD0qeyI."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013860
-< Soup-Debug: SoupMessage 50 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:39 GMT
-< Date: Sun, 28 Jul 2013 12:17:39 GMT
+< Soup-Debug-Timestamp: 1375193218
+< Soup-Debug: SoupMessage 49 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:58 GMT
+< Date: Tue, 30 Jul 2013 14:06:58 GMT
 < Cache-control: private, max-age=0, must-revalidate
-< Set-Cookie: _rtok=DjgZSXSBmt9b; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=3m7NV7NjAbuhf_P0L-yE9A; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=_pfVAP39nN2h; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=bQ9rzDUYpZVSDdNVIw6FBg; Domain=.google.com; Path=/; Secure; HttpOnly
 < GData-Version: 2.0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN
@@ -79,24 +79,24 @@
 < Content-Type: text/html; charset=UTF-8
 < 
   
-> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5905639542445656401?authkey=Gv1sRgCIi65tzhvtybNQ 
HTTP/1.1
-> Soup-Debug-Timestamp: 1375013860
-> Soup-Debug: SoupSession 1 (0x6672c0), SoupMessage 51 (0x9aa550), SoupSocket 22 (0x7fffe00266e0)
+> DELETE /data/entry/api/user/libgdata.picasaweb/albumid/5906409880413253681?authkey=Gv1sRgCOSEzMfX0feeQA 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375193218
+> Soup-Debug: SoupSession 1 (0x6682e0), SoupMessage 50 (0x78d550), SoupSocket 21 (0x7fffe0028620)
Host: picasaweb.google.com
-> Authorization: GoogleLogin 
auth=DQAAANwAAABO8c3pAaaVUCxhEHZTctsQgnxLh6jMWP315bmwkRhnvD5SifkoCbt7mj8UyPUyyKqNAO6yBngPU-dixfH9q6ykfJVnOBnlVbyhbkoB0m6XkNnyeRMCcfIZroZWnJ4RBlM3jiHKgngMCQLh8irqan-Z9M9EAMX6LctQZlzLvhzzqdsGFGYpS8ihOHsIsXzrxryARyV5dFs49yW8mVbAO0Hof8CG1k5Chc5GDHr-U3WJ91jN4jkGST1lXCsibCWcIbKD-f2uOZf0XfjpDnsCGuUFrgpVpU7-pyGOWZx0dMbSKg
+> Authorization: GoogleLogin 
auth=DQAAANsAAACBRkzDssWFvAbsJ__WhogKQOB1hOdZ-V7TTzopLOdrYUCoOa9HrmeNJp5iha8I-J-YTle_CcHcfDVOcXqR5x439iCm1fiMPcoABzsfdLTKLKU2avMGICiYQ4M8donG0cblZbUDOW31-6bwXScW_yvDNARuAj0KQcJBCLpc3-WqhraDgc6ELRTI5TxhGmwu4XUFs6hDSd5UH9c9b79Qin0no0kBdLyj1cKXI-l5tH_oWOVvZfXCB_XQd_dRkFL12iPvfKmjIfa18ETXQbhPwKBOl737cGye_Xd4emswaoB4Ew
GData-Version: 2
If-Match: "YD0qeyI."
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
   
 < HTTP/1.1 200 OK
-< Soup-Debug-Timestamp: 1375013860
-< Soup-Debug: SoupMessage 51 (0x9aa550)
-< Expires: Sun, 28 Jul 2013 12:17:40 GMT
-< Date: Sun, 28 Jul 2013 12:17:40 GMT
+< Soup-Debug-Timestamp: 1375193219
+< Soup-Debug: SoupMessage 50 (0x78d550)
+< Expires: Tue, 30 Jul 2013 14:06:58 GMT
+< Date: Tue, 30 Jul 2013 14:06:58 GMT
 < Cache-control: private, max-age=0, must-revalidate
-< Set-Cookie: _rtok=NjIWemszbKxt; Path=/; Secure; HttpOnly
-< Set-Cookie: S=photos_html=ptF41YN7qAK0JVqjEo8juQ; Domain=.google.com; Path=/; Secure; HttpOnly
+< Set-Cookie: _rtok=VJZ-_xK_wlKI; Path=/; Secure; HttpOnly
+< Set-Cookie: S=photos_html=hOZsX0JWekOZRLD1LMsu3w; Domain=.google.com; Path=/; Secure; HttpOnly
 < GData-Version: 2.0
 < X-Content-Type-Options: nosniff
 < X-Frame-Options: SAMEORIGIN



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]