siri_cal 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +155 -0
  3. data/Rakefile +37 -0
  4. data/lib/generators/install.rb +16 -0
  5. data/lib/generators/templates/siri_cal.rb +13 -0
  6. data/lib/generators/templates/siri_says/default.rb +3 -0
  7. data/lib/siri_cal.rb +41 -0
  8. data/lib/siri_cal/methods.rb +49 -0
  9. data/lib/siri_cal/say_proxy.rb +63 -0
  10. data/lib/siri_cal/version.rb +3 -0
  11. data/lib/tasks/siri_cal_tasks.rake +4 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +9 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/models/movie.rb +2 -0
  18. data/test/dummy/app/models/user.rb +4 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/config.ru +4 -0
  21. data/test/dummy/config/application.rb +45 -0
  22. data/test/dummy/config/boot.rb +10 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +30 -0
  26. data/test/dummy/config/environments/production.rb +60 -0
  27. data/test/dummy/config/environments/test.rb +42 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/inflections.rb +10 -0
  30. data/test/dummy/config/initializers/mime_types.rb +5 -0
  31. data/test/dummy/config/initializers/secret_token.rb +7 -0
  32. data/test/dummy/config/initializers/session_store.rb +8 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +5 -0
  35. data/test/dummy/config/routes.rb +58 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/migrate/20111105175135_create_users.rb +11 -0
  38. data/test/dummy/db/migrate/20111108194230_create_movies.rb +11 -0
  39. data/test/dummy/db/schema.rb +31 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/lib/siri_says/default.rb +3 -0
  42. data/test/dummy/log/development.log +102 -0
  43. data/test/dummy/log/test.log +4932 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +26 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/fixtures/movies.yml +7 -0
  50. data/test/dummy/test/fixtures/users.yml +11 -0
  51. data/test/dummy/test/unit/movie_test.rb +7 -0
  52. data/test/dummy/test/unit/user_test.rb +7 -0
  53. data/test/fixtures/vcr_cassettes/invalid_credentials.yml +36 -0
  54. data/test/fixtures/vcr_cassettes/valid_credentials.yml +38 -0
  55. data/test/fixtures/vcr_cassettes/valid_credentials_with_events.yml +772 -0
  56. data/test/fixtures/vcr_cassettes/valid_credentials_with_events_to_delete.yml +948 -0
  57. data/test/generators/install_test.rb +13 -0
  58. data/test/siri_cal_test.rb +82 -0
  59. data/test/test_helper.rb +23 -0
  60. metadata +216 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name:
5
+
6
+ two:
7
+ name:
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: "paul"
5
+ siriable_login: MyString
6
+ siriable_password: MyString
7
+
8
+ two:
9
+ name: "brian"
10
+ siriable_login: MyString
11
+ siriable_password: MyString
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class MovieTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,36 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://www.google.com:443/accounts/ClientLogin
6
+ body: Passwd=MyString&service=cl&accountType=HOSTED_OR_GOOGLE&Email=MyString&source=northworld.com-googlecalendar-integration
7
+ headers:
8
+ content-type:
9
+ - application/x-www-form-urlencoded
10
+ response: !ruby/struct:VCR::Response
11
+ status: !ruby/struct:VCR::ResponseStatus
12
+ code: 403
13
+ message: Forbidden
14
+ headers:
15
+ x-content-type-options:
16
+ - nosniff
17
+ expires:
18
+ - Mon, 01-Jan-1990 00:00:00 GMT
19
+ content-type:
20
+ - text/plain
21
+ server:
22
+ - GSE
23
+ x-xss-protection:
24
+ - 1; mode=block
25
+ date:
26
+ - Mon, 07 Nov 2011 03:11:52 GMT
27
+ content-length:
28
+ - "24"
29
+ cache-control:
30
+ - no-cache, no-store
31
+ pragma:
32
+ - no-cache
33
+ body: |
34
+ Error=BadAuthentication
35
+
36
+ http_version: "1.1"
@@ -0,0 +1,38 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://www.google.com:443/accounts/ClientLogin
6
+ body: Passwd=blabla&service=cl&accountType=HOSTED_OR_GOOGLE&Email=someone%40gmail.com&source=northworld.com-googlecalendar-integration
7
+ headers:
8
+ content-type:
9
+ - application/x-www-form-urlencoded
10
+ response: !ruby/struct:VCR::Response
11
+ status: !ruby/struct:VCR::ResponseStatus
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ x-content-type-options:
16
+ - nosniff
17
+ expires:
18
+ - Mon, 01-Jan-1990 00:00:00 GMT
19
+ content-type:
20
+ - text/plain
21
+ server:
22
+ - GSE
23
+ x-xss-protection:
24
+ - 1; mode=block
25
+ date:
26
+ - Mon, 07 Nov 2011 03:11:53 GMT
27
+ content-length:
28
+ - "755"
29
+ cache-control:
30
+ - no-cache, no-store
31
+ pragma:
32
+ - no-cache
33
+ body: |
34
+ SID=DQAAAKUAAAB4gzUHsWOzy0ah600g34Eef2xNHL46hsJZ2bq9DhapF2fHgW7s5eO4PoKX9bGELZqTbNMBWx9nqdE8wrcLU7JPvuXY8s6tkQS0gDdsA9OoPIn7R7uRJWNIts13mo8EtQL1TPn10erJut5qj1obgmfbmjZ49B-bpg4naKpVfSj6eZA5s99EY7Tuxt8JePfrDq1zUtCBcv0Qj3sqRLMmFC1vyyT6Ea51nWG22G3whTw
35
+ LSID=DQAAAgAAADCKSlfZhD-fsYyVEe9SPHsGR0CND-dljowp_eXr3AJ_stmGdb2ajd8lgz8yqwC5TbfebPPxyV0s3E5vRhCcLoXn-WmE9n5lp1cmoqX3j8COFR4tQJQ5D8dskU62wAzgSy8lYLCoFFZKSpRvzS1MOiMe95UNpry9wmmox9lzFHUlkcpsqTO8CjKNUS3UFxyJbAyEWeuiFzp-SWaAkV5AYlgbeO24FjbIHcWwCvufjhI8IA
36
+ Auth=DQAAAgcAAADCKSlfZhD-fsYyVEe9SPHsGR0CND-dljowp_eXr3AJ_stmGdb2ajd8lgz8yqwC5TbJiXL5IfnETN6QBnACY6kv4FO5-7T0LT1q9iyOJeXB9shVFCJEv9G_1KnNk6qgj7PH12sodGWiH1C6s10AyeJfdH_XMFPXuGq8ZncEVc2m5NqXX6JJ60T6HySiVNLbivH93yzpUd2biz60LpIRjab-fgMhLL8biTVH5-Fu3GYf3w
37
+
38
+ http_version: "1.1"
@@ -0,0 +1,772 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=hFYA5366G5afUlVD6ArM5g
6
+ body:
7
+ headers:
8
+ content-type:
9
+ - application/atom+xml
10
+ authorization:
11
+ - GoogleLogin auth=DQAAAKYAAAB9C2KB42HaIMJPDemTfPw9FbWE2QH7cbsI82gkbMfpmCjJOrXQrBz1qkoQk_S8N1VPRp_Ly4jWb5Ox5oUdBQ4qNLOKqXIJwRcXEDsB0mlS2JVAmtvHJwlEH4-bWhrxvKLSDnLDZKUs9DoyZg1UkBWzw062zqXeyaghqt5mZujt5PNNlTdWYQM88-5Tcy19yqHF1bPKynuQYpxlM2JCZZvvT48qtZToTJbXZdKW2nKCKw
12
+ response: !ruby/struct:VCR::Response
13
+ status: !ruby/struct:VCR::ResponseStatus
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ x-frame-options:
18
+ - SAMEORIGIN
19
+ x-content-type-options:
20
+ - nosniff
21
+ last-modified:
22
+ - Mon, 07 Nov 2011 03:13:03 GMT
23
+ expires:
24
+ - Mon, 07 Nov 2011 03:13:12 GMT
25
+ content-type:
26
+ - application/atom+xml; charset=UTF-8
27
+ server:
28
+ - GSE
29
+ x-xss-protection:
30
+ - 1; mode=block
31
+ date:
32
+ - Mon, 07 Nov 2011 03:13:12 GMT
33
+ gdata-version:
34
+ - "1.0"
35
+ set-cookie:
36
+ - S=calendar=KwwoKyAXzImLkpSg0oqSYw;Expires=Tue, 06-Nov-2012 03:13:12 GMT;Secure
37
+ vary:
38
+ - Accept, X-GData-Authorization, GData-Version
39
+ cache-control:
40
+ - private, max-age=0, must-revalidate, no-transform
41
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
42
+ http_version: "1.1"
43
+ - !ruby/struct:VCR::HTTPInteraction
44
+ request: !ruby/struct:VCR::Request
45
+ method: :get
46
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=WF-45a-52fHIAi9WP58kuw
47
+ body:
48
+ headers:
49
+ content-type:
50
+ - application/atom+xml
51
+ authorization:
52
+ - GoogleLogin auth=DQAAAKgAAAB_zbSuZ1D9_KaVWtsEXaKd_rGeCVPsAs6F9ALNx9LPUXuLSDaA8-lXVgIFRo4ElIP1dfdPgHK04OEJ8i2iSQYe8yZcCdMCmLfU4vrL6aJw0Z6SA_HAH1zfRIQvTQZP6POSmDar4H4qUo71CBfXpgHLHsPlQBCrZAuAhT0QsjWyp71Jy5Yik6XXJdK3c-4LfMQcBHQIe-CMWfOJsfTSNvdMWax5LIAqYde2i3jiBwWaiA
53
+ response: !ruby/struct:VCR::Response
54
+ status: !ruby/struct:VCR::ResponseStatus
55
+ code: 200
56
+ message: OK
57
+ headers:
58
+ x-frame-options:
59
+ - SAMEORIGIN
60
+ x-content-type-options:
61
+ - nosniff
62
+ last-modified:
63
+ - Mon, 07 Nov 2011 03:13:13 GMT
64
+ expires:
65
+ - Mon, 07 Nov 2011 03:13:13 GMT
66
+ content-type:
67
+ - application/atom+xml; charset=UTF-8
68
+ server:
69
+ - GSE
70
+ x-xss-protection:
71
+ - 1; mode=block
72
+ date:
73
+ - Mon, 07 Nov 2011 03:13:13 GMT
74
+ gdata-version:
75
+ - "1.0"
76
+ set-cookie:
77
+ - S=calendar=hBRsj_r_qVlS3pvNc7Ek4w;Expires=Tue, 06-Nov-2012 03:13:13 GMT;Secure
78
+ vary:
79
+ - Accept, X-GData-Authorization, GData-Version
80
+ cache-control:
81
+ - private, max-age=0, must-revalidate, no-transform
82
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-07T03:13:13.677Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-07T03:13:13.652Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-07T03:13:13.655Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-07T03:13:13.651Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-07T03:13:13.651Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
83
+ http_version: "1.1"
84
+ - !ruby/struct:VCR::HTTPInteraction
85
+ request: !ruby/struct:VCR::Request
86
+ method: :get
87
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=WF-45a-52fHIAi9WP58kuw
88
+ body:
89
+ headers:
90
+ content-type:
91
+ - application/atom+xml
92
+ authorization:
93
+ - GoogleLogin auth=DQAAAKgAAAB_zbSuZ1D9_KaVWtsEXaKd_rGeCVPsAs6F9ALNx9LPUXuLSDaA8-lXVgIFRo4ElIP1dfdPgHK04OEJ8i2iSQYe8yZcCdMCmLfU4vrL6aJw0Z6SA_HAH1zfRIQvTQZP6POSmDar4H4qUo71CBfXpgHLHsPlQBCrZAuAhT0QsjWyp71Jy5Yik6XXJdK3c-4LfMQcBHQIe-CMWfOJsfTSNvdMWax5LIAqYde2i3jiBwWaiA
94
+ response: !ruby/struct:VCR::Response
95
+ status: !ruby/struct:VCR::ResponseStatus
96
+ code: 200
97
+ message: OK
98
+ headers:
99
+ x-frame-options:
100
+ - SAMEORIGIN
101
+ x-content-type-options:
102
+ - nosniff
103
+ last-modified:
104
+ - Mon, 07 Nov 2011 03:13:03 GMT
105
+ expires:
106
+ - Mon, 07 Nov 2011 03:13:14 GMT
107
+ content-type:
108
+ - application/atom+xml; charset=UTF-8
109
+ server:
110
+ - GSE
111
+ x-xss-protection:
112
+ - 1; mode=block
113
+ date:
114
+ - Mon, 07 Nov 2011 03:13:14 GMT
115
+ gdata-version:
116
+ - "1.0"
117
+ set-cookie:
118
+ - S=calendar=nIVRioyChpxRlFwWxrtNiA;Expires=Tue, 06-Nov-2012 03:13:14 GMT;Secure
119
+ vary:
120
+ - Accept, X-GData-Authorization, GData-Version
121
+ cache-control:
122
+ - private, max-age=0, must-revalidate, no-transform
123
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
124
+ http_version: "1.1"
125
+ - !ruby/struct:VCR::HTTPInteraction
126
+ request: !ruby/struct:VCR::Request
127
+ method: :get
128
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=PVGjb5fyX4tNpfXxvw2vaA
129
+ body:
130
+ headers:
131
+ content-type:
132
+ - application/atom+xml
133
+ authorization:
134
+ - GoogleLogin auth=DQAAAKgAAAD95T7wVKv74oY7vRrdP3ZnFrBTjOtXNo6D7MFmtBrvd2FyllmK29UtAAuCO7_GqH66rHQ8lFksNXqAJ-x-z5hdQdWpq2u3dfQBJwKSsUyh9yFixFByUUJjzd3eZH-vzm1FHVhIOgoFATIz3QaDChT2EMpR8T_5SQFEPHlVMssuTyJmmOvCrTkL3mfXqiXfEIzrPMIVworHV-bywIUKJeWHD1H3INSHgLrFMQ7lUoIljw
135
+ response: !ruby/struct:VCR::Response
136
+ status: !ruby/struct:VCR::ResponseStatus
137
+ code: 200
138
+ message: OK
139
+ headers:
140
+ x-frame-options:
141
+ - SAMEORIGIN
142
+ x-content-type-options:
143
+ - nosniff
144
+ last-modified:
145
+ - Mon, 07 Nov 2011 03:13:03 GMT
146
+ expires:
147
+ - Mon, 07 Nov 2011 03:13:15 GMT
148
+ content-type:
149
+ - application/atom+xml; charset=UTF-8
150
+ server:
151
+ - GSE
152
+ x-xss-protection:
153
+ - 1; mode=block
154
+ date:
155
+ - Mon, 07 Nov 2011 03:13:15 GMT
156
+ gdata-version:
157
+ - "1.0"
158
+ set-cookie:
159
+ - S=calendar=-PL9eGf1cZbg_WbWEhD7KQ;Expires=Tue, 06-Nov-2012 03:13:15 GMT;Secure
160
+ vary:
161
+ - Accept, X-GData-Authorization, GData-Version
162
+ cache-control:
163
+ - private, max-age=0, must-revalidate, no-transform
164
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
165
+ http_version: "1.1"
166
+ - !ruby/struct:VCR::HTTPInteraction
167
+ request: !ruby/struct:VCR::Request
168
+ method: :get
169
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=T76ZuPvCsxtm5cMBPJb9xg
170
+ body:
171
+ headers:
172
+ content-type:
173
+ - application/atom+xml
174
+ authorization:
175
+ - GoogleLogin auth=DQAAAKYAAAAk02j0gTAViyZcI690Wgb2UkBmtx514RzdIBtmjt_gZXDcAJI0S63mQY3ZpA4sxZxjxORntD12_TGCMDwdjoVw9SDaWiGzEddyuFUbZxf2uZ9Q71jwvTUfp6BuWPjfL83yvxxdp2j7a7bOasQNcjr-fjdd6BQknKkx5OywuD-VvZiJcABuk9I7fLkzhfWmTtiSNZFpi0JK88PAwzFOUOHOnTkSTapImVLyLgmiJ6E2ng
176
+ response: !ruby/struct:VCR::Response
177
+ status: !ruby/struct:VCR::ResponseStatus
178
+ code: 200
179
+ message: OK
180
+ headers:
181
+ x-frame-options:
182
+ - SAMEORIGIN
183
+ x-content-type-options:
184
+ - nosniff
185
+ last-modified:
186
+ - Tue, 08 Nov 2011 20:00:28 GMT
187
+ expires:
188
+ - Tue, 08 Nov 2011 20:00:28 GMT
189
+ content-type:
190
+ - application/atom+xml; charset=UTF-8
191
+ server:
192
+ - GSE
193
+ x-xss-protection:
194
+ - 1; mode=block
195
+ date:
196
+ - Tue, 08 Nov 2011 20:00:28 GMT
197
+ gdata-version:
198
+ - "1.0"
199
+ set-cookie:
200
+ - S=calendar=EitPCL77-2n9htcjBLVN1g;Expires=Wed, 07-Nov-2012 20:00:28 GMT;Secure
201
+ vary:
202
+ - Accept, X-GData-Authorization, GData-Version
203
+ cache-control:
204
+ - private, max-age=0, must-revalidate, no-transform
205
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:00:28.746Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:00:28.727Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:00:28.729Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:00:28.726Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:00:28.726Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
206
+ http_version: "1.1"
207
+ - !ruby/struct:VCR::HTTPInteraction
208
+ request: !ruby/struct:VCR::Request
209
+ method: :get
210
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=T76ZuPvCsxtm5cMBPJb9xg
211
+ body:
212
+ headers:
213
+ content-type:
214
+ - application/atom+xml
215
+ authorization:
216
+ - GoogleLogin auth=DQAAAKYAAAAk02j0gTAViyZcI690Wgb2UkBmtx514RzdIBtmjt_gZXDcAJI0S63mQY3ZpA4sxZxjxORntD12_TGCMDwdjoVw9SDaWiGzEddyuFUbZxf2uZ9Q71jwvTUfp6BuWPjfL83yvxxdp2j7a7bOasQNcjr-fjdd6BQknKkx5OywuD-VvZiJcABuk9I7fLkzhfWmTtiSNZFpi0JK88PAwzFOUOHOnTkSTapImVLyLgmiJ6E2ng
217
+ response: !ruby/struct:VCR::Response
218
+ status: !ruby/struct:VCR::ResponseStatus
219
+ code: 200
220
+ message: OK
221
+ headers:
222
+ x-frame-options:
223
+ - SAMEORIGIN
224
+ x-content-type-options:
225
+ - nosniff
226
+ last-modified:
227
+ - Tue, 08 Nov 2011 19:59:09 GMT
228
+ expires:
229
+ - Tue, 08 Nov 2011 20:00:29 GMT
230
+ content-type:
231
+ - application/atom+xml; charset=UTF-8
232
+ server:
233
+ - GSE
234
+ x-xss-protection:
235
+ - 1; mode=block
236
+ date:
237
+ - Tue, 08 Nov 2011 20:00:29 GMT
238
+ gdata-version:
239
+ - "1.0"
240
+ set-cookie:
241
+ - S=calendar=MT3ONOy268dkltv8gSMfOg;Expires=Wed, 07-Nov-2012 20:00:29 GMT;Secure
242
+ vary:
243
+ - Accept, X-GData-Authorization, GData-Version
244
+ cache-control:
245
+ - private, max-age=0, must-revalidate, no-transform
246
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
247
+ http_version: "1.1"
248
+ - !ruby/struct:VCR::HTTPInteraction
249
+ request: !ruby/struct:VCR::Request
250
+ method: :get
251
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=YFpi_eD95BjxJv4rK4ZnWw
252
+ body:
253
+ headers:
254
+ content-type:
255
+ - application/atom+xml
256
+ authorization:
257
+ - GoogleLogin auth=DQAAAKcAAAA32rMVfIMtudj6agY7L0Y7Hku1-96KNUzrUyn33ojnrbqI7wKM9_fwKw1DwRyZhlVcb9e19Z0sVKLyca39OpTn72M-JCSXPsdK5pM0kynBGt20B7loqDhi9eprSFrTc7Y0w2gM4FLjSG7AVP_6oeP8Jz1Vsq75ZJPv95K8OcPZBybAtoWGSQSAfa4lp-ncQj7JQ043H7XRfCD7rC6P92hyzZIM0fXqeAcfvbqU8_rIAQ
258
+ response: !ruby/struct:VCR::Response
259
+ status: !ruby/struct:VCR::ResponseStatus
260
+ code: 200
261
+ message: OK
262
+ headers:
263
+ x-content-type-options:
264
+ - nosniff
265
+ x-frame-options:
266
+ - SAMEORIGIN
267
+ expires:
268
+ - Tue, 08 Nov 2011 20:02:09 GMT
269
+ last-modified:
270
+ - Tue, 08 Nov 2011 20:02:09 GMT
271
+ content-type:
272
+ - application/atom+xml; charset=UTF-8
273
+ date:
274
+ - Tue, 08 Nov 2011 20:02:09 GMT
275
+ x-xss-protection:
276
+ - 1; mode=block
277
+ server:
278
+ - GSE
279
+ gdata-version:
280
+ - "1.0"
281
+ set-cookie:
282
+ - S=calendar=fkxQ6n0088zqpcDOfwyH1w;Expires=Wed, 07-Nov-2012 20:02:09 GMT;Secure
283
+ cache-control:
284
+ - private, max-age=0, must-revalidate, no-transform
285
+ vary:
286
+ - Accept, X-GData-Authorization, GData-Version
287
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:02:09.899Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:02:09.884Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:02:09.886Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:02:09.883Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:02:09.882Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
288
+ http_version: "1.1"
289
+ - !ruby/struct:VCR::HTTPInteraction
290
+ request: !ruby/struct:VCR::Request
291
+ method: :get
292
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=YFpi_eD95BjxJv4rK4ZnWw
293
+ body:
294
+ headers:
295
+ content-type:
296
+ - application/atom+xml
297
+ authorization:
298
+ - GoogleLogin auth=DQAAAKcAAAA32rMVfIMtudj6agY7L0Y7Hku1-96KNUzrUyn33ojnrbqI7wKM9_fwKw1DwRyZhlVcb9e19Z0sVKLyca39OpTn72M-JCSXPsdK5pM0kynBGt20B7loqDhi9eprSFrTc7Y0w2gM4FLjSG7AVP_6oeP8Jz1Vsq75ZJPv95K8OcPZBybAtoWGSQSAfa4lp-ncQj7JQ043H7XRfCD7rC6P92hyzZIM0fXqeAcfvbqU8_rIAQ
299
+ response: !ruby/struct:VCR::Response
300
+ status: !ruby/struct:VCR::ResponseStatus
301
+ code: 200
302
+ message: OK
303
+ headers:
304
+ x-content-type-options:
305
+ - nosniff
306
+ x-frame-options:
307
+ - SAMEORIGIN
308
+ expires:
309
+ - Tue, 08 Nov 2011 20:02:10 GMT
310
+ last-modified:
311
+ - Tue, 08 Nov 2011 19:59:09 GMT
312
+ content-type:
313
+ - application/atom+xml; charset=UTF-8
314
+ date:
315
+ - Tue, 08 Nov 2011 20:02:10 GMT
316
+ x-xss-protection:
317
+ - 1; mode=block
318
+ server:
319
+ - GSE
320
+ gdata-version:
321
+ - "1.0"
322
+ set-cookie:
323
+ - S=calendar=YrI6xAJreuV8tAvHB7cK9A;Expires=Wed, 07-Nov-2012 20:02:10 GMT;Secure
324
+ cache-control:
325
+ - private, max-age=0, must-revalidate, no-transform
326
+ vary:
327
+ - Accept, X-GData-Authorization, GData-Version
328
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
329
+ http_version: "1.1"
330
+ - !ruby/struct:VCR::HTTPInteraction
331
+ request: !ruby/struct:VCR::Request
332
+ method: :get
333
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=dG5QldvzjDJ4KElfqWgaSw
334
+ body:
335
+ headers:
336
+ content-type:
337
+ - application/atom+xml
338
+ authorization:
339
+ - GoogleLogin auth=DQAAAKcAAAAhWW3QSxBigUvEzbhzdZDKpbe-OH7F7N5CTC2gJMQjSMUDSYVbB8YzUIg0mcogzoglVS-3K0NXlYj-L0VcF3TQQOlvdV-C3uu9O73aKniWEQ9e7Sg_OyG9lUgQxwep56_Q8vVqIsu2rhWbsg4NeQtPC-bdMKwnj1wMHBG-3QjPeG7pBrF9zKVnG8szRIWxv6O8ADocm2EeOAn8mPvCLfvxloK30k9VRoiVGB3sgo23jQ
340
+ response: !ruby/struct:VCR::Response
341
+ status: !ruby/struct:VCR::ResponseStatus
342
+ code: 200
343
+ message: OK
344
+ headers:
345
+ x-content-type-options:
346
+ - nosniff
347
+ x-frame-options:
348
+ - SAMEORIGIN
349
+ expires:
350
+ - Tue, 08 Nov 2011 20:03:33 GMT
351
+ last-modified:
352
+ - Tue, 08 Nov 2011 20:03:33 GMT
353
+ content-type:
354
+ - application/atom+xml; charset=UTF-8
355
+ date:
356
+ - Tue, 08 Nov 2011 20:03:33 GMT
357
+ x-xss-protection:
358
+ - 1; mode=block
359
+ server:
360
+ - GSE
361
+ gdata-version:
362
+ - "1.0"
363
+ set-cookie:
364
+ - S=calendar=OFd2YPS4J0wYu35e60rEHw;Expires=Wed, 07-Nov-2012 20:03:32 GMT;Secure
365
+ cache-control:
366
+ - private, max-age=0, must-revalidate, no-transform
367
+ vary:
368
+ - Accept, X-GData-Authorization, GData-Version
369
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:03:33.192Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:03:33.181Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:03:33.184Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:03:33.179Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:03:33.179Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
370
+ http_version: "1.1"
371
+ - !ruby/struct:VCR::HTTPInteraction
372
+ request: !ruby/struct:VCR::Request
373
+ method: :get
374
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=dG5QldvzjDJ4KElfqWgaSw
375
+ body:
376
+ headers:
377
+ content-type:
378
+ - application/atom+xml
379
+ authorization:
380
+ - GoogleLogin auth=DQAAAKcAAAAhWW3QSxBigUvEzbhzdZDKpbe-OH7F7N5CTC2gJMQjSMUDSYVbB8YzUIg0mcogzoglVS-3K0NXlYj-L0VcF3TQQOlvdV-C3uu9O73aKniWEQ9e7Sg_OyG9lUgQxwep56_Q8vVqIsu2rhWbsg4NeQtPC-bdMKwnj1wMHBG-3QjPeG7pBrF9zKVnG8szRIWxv6O8ADocm2EeOAn8mPvCLfvxloK30k9VRoiVGB3sgo23jQ
381
+ response: !ruby/struct:VCR::Response
382
+ status: !ruby/struct:VCR::ResponseStatus
383
+ code: 200
384
+ message: OK
385
+ headers:
386
+ x-content-type-options:
387
+ - nosniff
388
+ x-frame-options:
389
+ - SAMEORIGIN
390
+ expires:
391
+ - Tue, 08 Nov 2011 20:03:33 GMT
392
+ last-modified:
393
+ - Tue, 08 Nov 2011 19:59:09 GMT
394
+ content-type:
395
+ - application/atom+xml; charset=UTF-8
396
+ date:
397
+ - Tue, 08 Nov 2011 20:03:33 GMT
398
+ x-xss-protection:
399
+ - 1; mode=block
400
+ server:
401
+ - GSE
402
+ gdata-version:
403
+ - "1.0"
404
+ set-cookie:
405
+ - S=calendar=LTiTNdi439HmGII0YL1OmQ;Expires=Wed, 07-Nov-2012 20:03:33 GMT;Secure
406
+ cache-control:
407
+ - private, max-age=0, must-revalidate, no-transform
408
+ vary:
409
+ - Accept, X-GData-Authorization, GData-Version
410
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
411
+ http_version: "1.1"
412
+ - !ruby/struct:VCR::HTTPInteraction
413
+ request: !ruby/struct:VCR::Request
414
+ method: :get
415
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=CJI1vHPL4Kw33HOrm2dOAg
416
+ body:
417
+ headers:
418
+ content-type:
419
+ - application/atom+xml
420
+ authorization:
421
+ - GoogleLogin auth=DQAAAKcAAAAeyXPAHZCuAXC1VpolbYMWJ2S9Jt8gCRFzbU5w7jEPtbVlc1V5SWFiXaXGQ0LUcGBnTFZOtpQBugYE8DF-OyWxuGktJTrLcG6l5Fj8yTrLugudfLHYqdExrb3mxfo5023U7srZWfm0uVdTOfScNb-Ever0HeA8PQ9-_vOBnoCBIKZLhXvKocr7UzUhq_XAEwd6zEuwJdn-G3SaYRQNN00IqLB-OT4y85thWQRfpr12fg
422
+ response: !ruby/struct:VCR::Response
423
+ status: !ruby/struct:VCR::ResponseStatus
424
+ code: 200
425
+ message: OK
426
+ headers:
427
+ x-frame-options:
428
+ - SAMEORIGIN
429
+ x-content-type-options:
430
+ - nosniff
431
+ last-modified:
432
+ - Tue, 08 Nov 2011 19:59:09 GMT
433
+ expires:
434
+ - Tue, 08 Nov 2011 20:05:18 GMT
435
+ content-type:
436
+ - application/atom+xml; charset=UTF-8
437
+ server:
438
+ - GSE
439
+ x-xss-protection:
440
+ - 1; mode=block
441
+ date:
442
+ - Tue, 08 Nov 2011 20:05:18 GMT
443
+ gdata-version:
444
+ - "1.0"
445
+ set-cookie:
446
+ - S=calendar=nhMqwhipue_YAVuJ7pOj-w;Expires=Wed, 07-Nov-2012 20:05:18 GMT;Secure
447
+ vary:
448
+ - Accept, X-GData-Authorization, GData-Version
449
+ cache-control:
450
+ - private, max-age=0, must-revalidate, no-transform
451
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
452
+ http_version: "1.1"
453
+ - !ruby/struct:VCR::HTTPInteraction
454
+ request: !ruby/struct:VCR::Request
455
+ method: :get
456
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=xeuVCuXKemxwpGz8mds3YQ
457
+ body:
458
+ headers:
459
+ content-type:
460
+ - application/atom+xml
461
+ authorization:
462
+ - GoogleLogin auth=DQAAAKgAAAD1FnjRozZa_taGHYhaKAV-UlS-l9TuiwiY8TxSiste61dSMokKYB-eaIcnlmEVKMP9MPDZYbU0zb1Wa-BCTETxHablKaOS9mbHun9Mmqwx32mZ7DFOlxtzu2lonlzUsmSks_SoqKdiJy9R-Cu3KKT1XtfzkLWE7oh53ggHvuXid0FjFWwPGPgzeWA5lxe30iNQ8d0rzqfgygrEOpmxZ2i0Yc2Auf09TX8Ehb4GNp7T2A
463
+ response: !ruby/struct:VCR::Response
464
+ status: !ruby/struct:VCR::ResponseStatus
465
+ code: 200
466
+ message: OK
467
+ headers:
468
+ x-content-type-options:
469
+ - nosniff
470
+ x-frame-options:
471
+ - SAMEORIGIN
472
+ expires:
473
+ - Tue, 08 Nov 2011 20:13:04 GMT
474
+ last-modified:
475
+ - Tue, 08 Nov 2011 20:13:04 GMT
476
+ content-type:
477
+ - application/atom+xml; charset=UTF-8
478
+ date:
479
+ - Tue, 08 Nov 2011 20:13:04 GMT
480
+ x-xss-protection:
481
+ - 1; mode=block
482
+ server:
483
+ - GSE
484
+ gdata-version:
485
+ - "1.0"
486
+ set-cookie:
487
+ - S=calendar=Gqoqr4rlb0mbuKqDJaYG1w;Expires=Wed, 07-Nov-2012 20:13:04 GMT;Secure
488
+ cache-control:
489
+ - private, max-age=0, must-revalidate, no-transform
490
+ vary:
491
+ - Accept, X-GData-Authorization, GData-Version
492
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:13:04.454Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:13:04.441Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:13:04.444Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:13:04.440Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:13:04.440Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
493
+ http_version: "1.1"
494
+ - !ruby/struct:VCR::HTTPInteraction
495
+ request: !ruby/struct:VCR::Request
496
+ method: :get
497
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=xeuVCuXKemxwpGz8mds3YQ
498
+ body:
499
+ headers:
500
+ content-type:
501
+ - application/atom+xml
502
+ authorization:
503
+ - GoogleLogin auth=DQAAAKgAAAD1FnjRozZa_taGHYhaKAV-UlS-l9TuiwiY8TxSiste61dSMokKYB-eaIcnlmEVKMP9MPDZYbU0zb1Wa-BCTETxHablKaOS9mbHun9Mmqwx32mZ7DFOlxtzu2lonlzUsmSks_SoqKdiJy9R-Cu3KKT1XtfzkLWE7oh53ggHvuXid0FjFWwPGPgzeWA5lxe30iNQ8d0rzqfgygrEOpmxZ2i0Yc2Auf09TX8Ehb4GNp7T2A
504
+ response: !ruby/struct:VCR::Response
505
+ status: !ruby/struct:VCR::ResponseStatus
506
+ code: 200
507
+ message: OK
508
+ headers:
509
+ x-content-type-options:
510
+ - nosniff
511
+ x-frame-options:
512
+ - SAMEORIGIN
513
+ expires:
514
+ - Tue, 08 Nov 2011 20:13:04 GMT
515
+ last-modified:
516
+ - Tue, 08 Nov 2011 19:59:09 GMT
517
+ content-type:
518
+ - application/atom+xml; charset=UTF-8
519
+ date:
520
+ - Tue, 08 Nov 2011 20:13:04 GMT
521
+ x-xss-protection:
522
+ - 1; mode=block
523
+ server:
524
+ - GSE
525
+ gdata-version:
526
+ - "1.0"
527
+ set-cookie:
528
+ - S=calendar=Ca2J_0CP0nPJ8HD1iuW97g;Expires=Wed, 07-Nov-2012 20:13:04 GMT;Secure
529
+ cache-control:
530
+ - private, max-age=0, must-revalidate, no-transform
531
+ vary:
532
+ - Accept, X-GData-Authorization, GData-Version
533
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
534
+ http_version: "1.1"
535
+ - !ruby/struct:VCR::HTTPInteraction
536
+ request: !ruby/struct:VCR::Request
537
+ method: :post
538
+ uri: https://www.google.com:443/accounts/ClientLogin
539
+ body: Passwd=blabla&service=cl&accountType=HOSTED_OR_GOOGLE&Email=someone%40gmail.com&source=northworld.com-googlecalendar-integration
540
+ headers:
541
+ content-type:
542
+ - application/x-www-form-urlencoded
543
+ response: !ruby/struct:VCR::Response
544
+ status: !ruby/struct:VCR::ResponseStatus
545
+ code: 200
546
+ message: OK
547
+ headers:
548
+ x-content-type-options:
549
+ - nosniff
550
+ expires:
551
+ - Mon, 01-Jan-1990 00:00:00 GMT
552
+ content-type:
553
+ - text/plain
554
+ server:
555
+ - GSE
556
+ x-xss-protection:
557
+ - 1; mode=block
558
+ date:
559
+ - Tue, 08 Nov 2011 20:13:35 GMT
560
+ content-length:
561
+ - "755"
562
+ cache-control:
563
+ - no-cache, no-store
564
+ pragma:
565
+ - no-cache
566
+ body: |
567
+ SID=DQAAAKYAAABn83QSXw5smPjNSy-aH9v9A2x0Wd6yAAvbCxxJSrNJsYbGgMGvZMB9gZhFT6oFI88td_IytBlVds6DVFMpKppYaEUD0z-jYx6f72dHCnMIpoyRervHXGU3o8e3EKhwNThnMUKKkPbueYmbufIjHvkVsnE4ZwYV76-z-FF1HCeDsQMG0Ob6TIEI3XH1NQdgotrL3LMDMEtf2QeGtZzyN8ET4JAOGd-0vKJlj3GEFQYX2A
568
+ LSID=DQAAAKgAAADAbhyyEH07rBFHAtDxmQmwxdtjTMdtw5PO_K46C4D9l30FS-y3mQgCfx45fm1VtvG-w2t55g87lvtguFVmV4lhGaF-fJ_3tlrW0BhKsaJxCPfaaizIgIzYZNCbh5hPaKX0hZstHxY_H5Co30I5OkZmbx6JmB3XI3AslTUiFDghh8j3FjMclBk5KLGsdtYUebJ_FQ8imgpshbO7fmbqAYH9XNJHkjmDyqWNCyQeaN9w-w
569
+ Auth=DQAAAKgAAAAchuCtgpGRV5tmkaCCWrPdiKmhpdmJ0JQ0WuNyvRPMZU7jHIqaLbpN_goNZ-oglk_b8B5gqRv3LVMW8sINonzCIv9SE3kr0hYTQIG2U0GOrZt7RQk_it5mSpXiE5fpW4QoD0I65jxUGKfLuYJFtG0zmjXjOy-nEYDwTym5MCVNLn2e-LCTa3rH3y6MKc2G0I2IrZMBvJpS8m9NYqEQkeDrDCqUdobn8qYcZtgJjCqjfg
570
+
571
+ http_version: "1.1"
572
+ - !ruby/struct:VCR::HTTPInteraction
573
+ request: !ruby/struct:VCR::Request
574
+ method: :get
575
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full
576
+ body:
577
+ headers:
578
+ content-type:
579
+ - application/atom+xml
580
+ authorization:
581
+ - GoogleLogin auth=DQAAAKgAAAAchuCtgpGRV5tmkaCCWrPdiKmhpdmJ0JQ0WuNyvRPMZU7jHIqaLbpN_goNZ-oglk_b8B5gqRv3LVMW8sINonzCIv9SE3kr0hYTQIG2U0GOrZt7RQk_it5mSpXiE5fpW4QoD0I65jxUGKfLuYJFtG0zmjXjOy-nEYDwTym5MCVNLn2e-LCTa3rH3y6MKc2G0I2IrZMBvJpS8m9NYqEQkeDrDCqUdobn8qYcZtgJjCqjfg
582
+ response: !ruby/struct:VCR::Response
583
+ status: !ruby/struct:VCR::ResponseStatus
584
+ code: 200
585
+ message: OK
586
+ headers:
587
+ x-frame-options:
588
+ - SAMEORIGIN
589
+ x-content-type-options:
590
+ - nosniff
591
+ last-modified:
592
+ - Tue, 08 Nov 2011 20:13:35 GMT
593
+ expires:
594
+ - Tue, 08 Nov 2011 20:13:35 GMT
595
+ content-type:
596
+ - application/atom+xml; charset=UTF-8
597
+ server:
598
+ - GSE
599
+ x-xss-protection:
600
+ - 1; mode=block
601
+ date:
602
+ - Tue, 08 Nov 2011 20:13:35 GMT
603
+ gdata-version:
604
+ - "1.0"
605
+ set-cookie:
606
+ - S=calendar=NFQCe7MTpDsM5StNSigWDA;Expires=Wed, 07-Nov-2012 20:13:35 GMT;Secure
607
+ vary:
608
+ - Accept, X-GData-Authorization, GData-Version
609
+ cache-control:
610
+ - private, max-age=0, must-revalidate, no-transform
611
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:13:35.523Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:13:35.510Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:13:35.512Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:13:35.508Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:13:35.508Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
612
+ http_version: "1.1"
613
+ - !ruby/struct:VCR::HTTPInteraction
614
+ request: !ruby/struct:VCR::Request
615
+ method: :get
616
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full
617
+ body:
618
+ headers:
619
+ content-type:
620
+ - application/atom+xml
621
+ authorization:
622
+ - GoogleLogin auth=DQAAAKgAAAAchuCtgpGRV5tmkaCCWrPdiKmhpdmJ0JQ0WuNyvRPMZU7jHIqaLbpN_goNZ-oglk_b8B5gqRv3LVMW8sINonzCIv9SE3kr0hYTQIG2U0GOrZt7RQk_it5mSpXiE5fpW4QoD0I65jxUGKfLuYJFtG0zmjXjOy-nEYDwTym5MCVNLn2e-LCTa3rH3y6MKc2G0I2IrZMBvJpS8m9NYqEQkeDrDCqUdobn8qYcZtgJjCqjfg
623
+ response: !ruby/struct:VCR::Response
624
+ status: !ruby/struct:VCR::ResponseStatus
625
+ code: 200
626
+ message: OK
627
+ headers:
628
+ x-frame-options:
629
+ - SAMEORIGIN
630
+ x-content-type-options:
631
+ - nosniff
632
+ last-modified:
633
+ - Tue, 08 Nov 2011 19:59:09 GMT
634
+ expires:
635
+ - Tue, 08 Nov 2011 20:13:35 GMT
636
+ content-type:
637
+ - application/atom+xml; charset=UTF-8
638
+ server:
639
+ - GSE
640
+ x-xss-protection:
641
+ - 1; mode=block
642
+ date:
643
+ - Tue, 08 Nov 2011 20:13:35 GMT
644
+ gdata-version:
645
+ - "1.0"
646
+ set-cookie:
647
+ - S=calendar=xo9qiHFQ8YjCz_V-E3vE4g;Expires=Wed, 07-Nov-2012 20:13:35 GMT;Secure
648
+ vary:
649
+ - Accept, X-GData-Authorization, GData-Version
650
+ cache-control:
651
+ - private, max-age=0, must-revalidate, no-transform
652
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
653
+ http_version: "1.1"
654
+ - !ruby/struct:VCR::HTTPInteraction
655
+ request: !ruby/struct:VCR::Request
656
+ method: :post
657
+ uri: https://www.google.com:443/accounts/ClientLogin
658
+ body: Passwd=blabla&service=cl&accountType=HOSTED_OR_GOOGLE&Email=someone%40gmail.com&source=northworld.com-googlecalendar-integration
659
+ headers:
660
+ content-type:
661
+ - application/x-www-form-urlencoded
662
+ response: !ruby/struct:VCR::Response
663
+ status: !ruby/struct:VCR::ResponseStatus
664
+ code: 200
665
+ message: OK
666
+ headers:
667
+ x-content-type-options:
668
+ - nosniff
669
+ expires:
670
+ - Mon, 01-Jan-1990 00:00:00 GMT
671
+ content-type:
672
+ - text/plain
673
+ server:
674
+ - GSE
675
+ x-xss-protection:
676
+ - 1; mode=block
677
+ date:
678
+ - Tue, 08 Nov 2011 20:13:36 GMT
679
+ content-length:
680
+ - "755"
681
+ cache-control:
682
+ - no-cache, no-store
683
+ pragma:
684
+ - no-cache
685
+ body: |
686
+ SID=DQAAAKQAAACnXptcydV9rs7CTRkwZRXQCoirtzBY3sBq064pJxxHhE5Te9LNK9S3iOJfvCPyXB2tjUsp8TV9SJUsp3hXhRJ6jWzAJ4S7WufCoxINQTXyhjuHdaeKXaOoe_E7D5qzH7rQTKr714-YhxfKAmbT7aHrJJHjFyf6EfPtGbkasodr67ll_5SJBBkV5gUUlRMXS8AF2mok-cZxfdzlc2w9ERomvBkshO4VSduntPeKNQnK_Q
687
+ LSID=DQAAAKYAAAAasbZVN5OdlFEWvwoq9AU5fF2SoxK7zeo7oswLTbZcVsIxeS_rX3wogaad6WT5MVIhF8sLPZ_-Q32e3RN3h7LqmSwIfP0VrZ4G5wSRUL5IbYV3SuI0WBM1u_8s8DKolELDIR8cOCZXsxDxW4FFcBO5v32gq_A1QHzzHq9mhD2SXKF9ArEx8iu5Q2Dij-XI6uB5hj6i1FqBzA4HAiw8UXgEU9ociFxYJm325LAraZ7lXg
688
+ Auth=DQAAAKYAAAAasbZVN5OdlFEWvwoq9AU5fF2SoxK7zeo7oswLTbZcVsIxeS_rX3wogaad6WT5MVK_gVK13wFIB_YNuzLB5nPXelSiRHE5R3Gi2q29_rrybWa5HAUrMikaiW_I4rPR22xXVbqp0WoQPij8_zQkKEOfuAlSauKD_4UPRs1T4iKhebZ3Vtfovsz2B9gAJqfCK_Mh25b1AX_FfwBphDwEzWJ4Knn7hEegb4HbAeeWD8_L2Q
689
+
690
+ http_version: "1.1"
691
+ - !ruby/struct:VCR::HTTPInteraction
692
+ request: !ruby/struct:VCR::Request
693
+ method: :get
694
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full
695
+ body:
696
+ headers:
697
+ content-type:
698
+ - application/atom+xml
699
+ authorization:
700
+ - GoogleLogin auth=DQAAAKYAAAAasbZVN5OdlFEWvwoq9AU5fF2SoxK7zeo7oswLTbZcVsIxeS_rX3wogaad6WT5MVK_gVK13wFIB_YNuzLB5nPXelSiRHE5R3Gi2q29_rrybWa5HAUrMikaiW_I4rPR22xXVbqp0WoQPij8_zQkKEOfuAlSauKD_4UPRs1T4iKhebZ3Vtfovsz2B9gAJqfCK_Mh25b1AX_FfwBphDwEzWJ4Knn7hEegb4HbAeeWD8_L2Q
701
+ response: !ruby/struct:VCR::Response
702
+ status: !ruby/struct:VCR::ResponseStatus
703
+ code: 200
704
+ message: OK
705
+ headers:
706
+ x-frame-options:
707
+ - SAMEORIGIN
708
+ x-content-type-options:
709
+ - nosniff
710
+ last-modified:
711
+ - Tue, 08 Nov 2011 20:13:36 GMT
712
+ expires:
713
+ - Tue, 08 Nov 2011 20:13:36 GMT
714
+ content-type:
715
+ - application/atom+xml; charset=UTF-8
716
+ server:
717
+ - GSE
718
+ x-xss-protection:
719
+ - 1; mode=block
720
+ date:
721
+ - Tue, 08 Nov 2011 20:13:36 GMT
722
+ gdata-version:
723
+ - "1.0"
724
+ set-cookie:
725
+ - S=calendar=veH9w7eUrDgt4pO9VGJ8tg;Expires=Wed, 07-Nov-2012 20:13:36 GMT;Secure
726
+ vary:
727
+ - Accept, X-GData-Authorization, GData-Version
728
+ cache-control:
729
+ - private, max-age=0, must-revalidate, no-transform
730
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:13:36.649Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:13:36.635Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:13:36.637Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:13:36.634Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:13:36.634Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
731
+ http_version: "1.1"
732
+ - !ruby/struct:VCR::HTTPInteraction
733
+ request: !ruby/struct:VCR::Request
734
+ method: :get
735
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full
736
+ body:
737
+ headers:
738
+ content-type:
739
+ - application/atom+xml
740
+ authorization:
741
+ - GoogleLogin auth=DQAAAKYAAAAasbZVN5OdlFEWvwoq9AU5fF2SoxK7zeo7oswLTbZcVsIxeS_rX3wogaad6WT5MVK_gVK13wFIB_YNuzLB5nPXelSiRHE5R3Gi2q29_rrybWa5HAUrMikaiW_I4rPR22xXVbqp0WoQPij8_zQkKEOfuAlSauKD_4UPRs1T4iKhebZ3Vtfovsz2B9gAJqfCK_Mh25b1AX_FfwBphDwEzWJ4Knn7hEegb4HbAeeWD8_L2Q
742
+ response: !ruby/struct:VCR::Response
743
+ status: !ruby/struct:VCR::ResponseStatus
744
+ code: 200
745
+ message: OK
746
+ headers:
747
+ x-frame-options:
748
+ - SAMEORIGIN
749
+ x-content-type-options:
750
+ - nosniff
751
+ last-modified:
752
+ - Tue, 08 Nov 2011 19:59:09 GMT
753
+ expires:
754
+ - Tue, 08 Nov 2011 20:13:37 GMT
755
+ content-type:
756
+ - application/atom+xml; charset=UTF-8
757
+ server:
758
+ - GSE
759
+ x-xss-protection:
760
+ - 1; mode=block
761
+ date:
762
+ - Tue, 08 Nov 2011 20:13:37 GMT
763
+ gdata-version:
764
+ - "1.0"
765
+ set-cookie:
766
+ - S=calendar=_m0Azq3AtqWiDn2bW0r9dg;Expires=Wed, 07-Nov-2012 20:13:36 GMT;Secure
767
+ vary:
768
+ - Accept, X-GData-Authorization, GData-Version
769
+ cache-control:
770
+ - private, max-age=0, must-revalidate, no-transform
771
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak</id><published>2011-11-08T19:59:09.000Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=MjU2MGczbTJzNjY2dWphdWpkb2xzYWRoYWsgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/63456465549'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-09T12:00:00.000-08:00' startTime='2011-11-09T11:00:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='2560g3m2s666ujaujdolsadhak@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
772
+ http_version: "1.1"