autoevernote 0.1.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +170 -0
- data/Guardfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +35 -0
- data/Rakefile +5 -0
- data/autoevernote.gemspec +40 -0
- data/bin/autoevernote +4 -0
- data/config/autoevernote.example.yml +11 -0
- data/lib/autoevernote.rb +20 -0
- data/lib/autoevernote/asana.rb +60 -0
- data/lib/autoevernote/cli.rb +56 -0
- data/lib/autoevernote/evernote.rb +66 -0
- data/lib/autoevernote/klout.rb +28 -0
- data/lib/autoevernote/version.rb +3 -0
- data/spec/autoevernote/asana_spec.rb +25 -0
- data/spec/fixtures/autoevernote.yml +11 -0
- data/spec/fixtures/vcr_cassettes/completed_tasks.yml +3024 -0
- data/spec/spec_helper.rb +24 -0
- metadata +310 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
require 'oauth'
|
2
|
+
require 'evernote_oauth'
|
3
|
+
|
4
|
+
module AutoEvernote
|
5
|
+
class Evernote
|
6
|
+
attr_reader :client
|
7
|
+
attr_accessor :default_notebook
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
@client = EvernoteOAuth::Client.new(
|
11
|
+
token: AutoEvernote.configuration.evernote.token,
|
12
|
+
sandbox: false
|
13
|
+
)
|
14
|
+
@default_notebook = AutoEvernote.configuration.evernote.default_notebook
|
15
|
+
end
|
16
|
+
|
17
|
+
def store
|
18
|
+
@store ||= @client.note_store
|
19
|
+
end
|
20
|
+
|
21
|
+
def notebooks
|
22
|
+
@notebooks ||= store.listNotebooks
|
23
|
+
end
|
24
|
+
|
25
|
+
def create_note(title, body, notebook=default_notebook, tags=[])
|
26
|
+
note = ::Evernote::EDAM::Type::Note.new
|
27
|
+
note.title = title
|
28
|
+
note.content = create_note_body(body)
|
29
|
+
note.tagNames = (['autoevernote'] + tags).uniq
|
30
|
+
|
31
|
+
if notebook
|
32
|
+
note.notebookGuid = notebook.is_a?(String) ? find_notebook_guid(notebook) : notebook.guid
|
33
|
+
end
|
34
|
+
|
35
|
+
store_note(note)
|
36
|
+
end
|
37
|
+
|
38
|
+
def find_notebook_guid(name)
|
39
|
+
notebooks.select { |n| n.name == name }.first.guid
|
40
|
+
end
|
41
|
+
|
42
|
+
def create_note_from_hash(hash)
|
43
|
+
notebook = hash[:notebook] || default_notebook
|
44
|
+
tags = hash[:tags] || []
|
45
|
+
create_note(hash[:title], hash[:body], notebook, tags)
|
46
|
+
end
|
47
|
+
|
48
|
+
private
|
49
|
+
def create_note_body(body)
|
50
|
+
%Q{<?xml version="1.0" encoding="UTF-8"?>
|
51
|
+
<!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd">
|
52
|
+
<en-note>#{body}</en-note>
|
53
|
+
}
|
54
|
+
end
|
55
|
+
|
56
|
+
def store_note(note)
|
57
|
+
begin
|
58
|
+
store.createNote(note)
|
59
|
+
rescue ::Evernote::EDAM::Error::EDAMUserException => e
|
60
|
+
puts "EDAM user exception: #{e.inspect}"
|
61
|
+
rescue ::Evernote::EDAM::Error::EDAMNotFoundException => e
|
62
|
+
puts "EDAM not found exception: #{e.inspect}"
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# TODO: move to autoevernote.rb if other services require this on the future
|
2
|
+
require 'httparty'
|
3
|
+
|
4
|
+
module AutoEvernote
|
5
|
+
class Klout
|
6
|
+
attr_reader :klout_id, :api_key
|
7
|
+
|
8
|
+
include HTTParty
|
9
|
+
base_uri "http://api.klout.com/v2/"
|
10
|
+
default_params key: AutoEvernote.configuration.klout.token
|
11
|
+
|
12
|
+
def initialize(klout_id = nil)
|
13
|
+
@klout_id = klout_id
|
14
|
+
end
|
15
|
+
|
16
|
+
def twitter_identity(username)
|
17
|
+
self.class.get("/identity.json/twitter", query: { screenName: username })['id']
|
18
|
+
end
|
19
|
+
|
20
|
+
def score(username)
|
21
|
+
response = self.class.get("/user.json/#{twitter_identity(username)}/score")
|
22
|
+
{
|
23
|
+
score: response['score'].round(2),
|
24
|
+
monthly_change: response['scoreDelta']['monthChange'].round(2)
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module AutoEvernote
|
4
|
+
describe Asana do
|
5
|
+
let(:client) { described_class.new }
|
6
|
+
|
7
|
+
it "returns completed tasks" do
|
8
|
+
with_completed_tasks do
|
9
|
+
expect(client.completed_tasks.all?(&:completed)).to eq(true)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it "returns tasks that were completed today" do
|
14
|
+
with_completed_tasks do
|
15
|
+
client.completed_tasks_for_today.each do |task|
|
16
|
+
puts "#{task.name}: #{task.completed?}"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def with_completed_tasks(&block)
|
22
|
+
VCR.use_cassette('completed_tasks', &block)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,3024 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/workspaces
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Server:
|
22
|
+
- nginx/1.4.1
|
23
|
+
Date:
|
24
|
+
- Fri, 25 Oct 2013 06:58:44 GMT
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=UTF-8
|
27
|
+
Content-Length:
|
28
|
+
- '182'
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
X-Asana-Content-String-Length:
|
32
|
+
- '182'
|
33
|
+
Set-Cookie:
|
34
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
35
|
+
- server=prod-ws037.ec2|UmoWp; path=/
|
36
|
+
Pragma:
|
37
|
+
- no-cache
|
38
|
+
Cache-Control:
|
39
|
+
- no-store
|
40
|
+
X-Server-Name:
|
41
|
+
- prod-ws037.ec2
|
42
|
+
X-Asana-Preferred-Release-Revision:
|
43
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
44
|
+
X-Robots-Tag:
|
45
|
+
- none
|
46
|
+
Strict-Transport-Security:
|
47
|
+
- max-age=31536000; includeSubDomains
|
48
|
+
body:
|
49
|
+
encoding: US-ASCII
|
50
|
+
string: ! '{"data":[{"id":7294758917170,"name":"Never
|
51
|
+
Read Alone"},{"id":7541141945964,"name":"Personal"},{"id":498346170860,"name":"Personal
|
52
|
+
Projects"}]}'
|
53
|
+
http_version:
|
54
|
+
recorded_at: Fri, 25 Oct 2013 06:58:42 GMT
|
55
|
+
- request:
|
56
|
+
method: get
|
57
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/workspaces/789514846580/tasks?assignee=me&include_archived=true
|
58
|
+
body:
|
59
|
+
encoding: US-ASCII
|
60
|
+
string: ''
|
61
|
+
headers:
|
62
|
+
Accept:
|
63
|
+
- application/json
|
64
|
+
Accept-Encoding:
|
65
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
66
|
+
User-Agent:
|
67
|
+
- Ruby
|
68
|
+
response:
|
69
|
+
status:
|
70
|
+
code: 200
|
71
|
+
message: OK
|
72
|
+
headers:
|
73
|
+
Server:
|
74
|
+
- nginx/1.4.1
|
75
|
+
Date:
|
76
|
+
- Fri, 25 Oct 2013 06:58:45 GMT
|
77
|
+
Content-Type:
|
78
|
+
- application/json; charset=UTF-8
|
79
|
+
Content-Length:
|
80
|
+
- '11'
|
81
|
+
Connection:
|
82
|
+
- keep-alive
|
83
|
+
X-Asana-Content-String-Length:
|
84
|
+
- '11'
|
85
|
+
Set-Cookie:
|
86
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
87
|
+
- server=prod-ws011.ec2|UmoWq; path=/
|
88
|
+
Pragma:
|
89
|
+
- no-cache
|
90
|
+
Cache-Control:
|
91
|
+
- no-store
|
92
|
+
X-Server-Name:
|
93
|
+
- prod-ws011.ec2
|
94
|
+
X-Asana-Preferred-Release-Revision:
|
95
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
96
|
+
X-Robots-Tag:
|
97
|
+
- none
|
98
|
+
Strict-Transport-Security:
|
99
|
+
- max-age=31536000; includeSubDomains
|
100
|
+
body:
|
101
|
+
encoding: US-ASCII
|
102
|
+
string: ! '{"data":[]}'
|
103
|
+
http_version:
|
104
|
+
recorded_at: Fri, 25 Oct 2013 06:58:43 GMT
|
105
|
+
- request:
|
106
|
+
method: get
|
107
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/workspaces/7294758917170/tasks?assignee=me&include_archived=true
|
108
|
+
body:
|
109
|
+
encoding: US-ASCII
|
110
|
+
string: ''
|
111
|
+
headers:
|
112
|
+
Accept:
|
113
|
+
- application/json
|
114
|
+
Accept-Encoding:
|
115
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
116
|
+
User-Agent:
|
117
|
+
- Ruby
|
118
|
+
response:
|
119
|
+
status:
|
120
|
+
code: 200
|
121
|
+
message: OK
|
122
|
+
headers:
|
123
|
+
Server:
|
124
|
+
- nginx/1.4.1
|
125
|
+
Date:
|
126
|
+
- Fri, 25 Oct 2013 06:58:48 GMT
|
127
|
+
Content-Type:
|
128
|
+
- application/json; charset=UTF-8
|
129
|
+
Content-Length:
|
130
|
+
- '11'
|
131
|
+
Connection:
|
132
|
+
- keep-alive
|
133
|
+
X-Asana-Content-String-Length:
|
134
|
+
- '11'
|
135
|
+
Set-Cookie:
|
136
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
137
|
+
- server=prod-ws009.ec2|UmoWq; path=/
|
138
|
+
Pragma:
|
139
|
+
- no-cache
|
140
|
+
Cache-Control:
|
141
|
+
- no-store
|
142
|
+
X-Server-Name:
|
143
|
+
- prod-ws009.ec2
|
144
|
+
X-Asana-Preferred-Release-Revision:
|
145
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
146
|
+
X-Robots-Tag:
|
147
|
+
- none
|
148
|
+
Strict-Transport-Security:
|
149
|
+
- max-age=31536000; includeSubDomains
|
150
|
+
body:
|
151
|
+
encoding: US-ASCII
|
152
|
+
string: ! '{"data":[]}'
|
153
|
+
http_version:
|
154
|
+
recorded_at: Fri, 25 Oct 2013 06:58:46 GMT
|
155
|
+
- request:
|
156
|
+
method: get
|
157
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/workspaces/7541141945964/tasks?assignee=me&include_archived=true
|
158
|
+
body:
|
159
|
+
encoding: US-ASCII
|
160
|
+
string: ''
|
161
|
+
headers:
|
162
|
+
Accept:
|
163
|
+
- application/json
|
164
|
+
Accept-Encoding:
|
165
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
166
|
+
User-Agent:
|
167
|
+
- Ruby
|
168
|
+
response:
|
169
|
+
status:
|
170
|
+
code: 200
|
171
|
+
message: OK
|
172
|
+
headers:
|
173
|
+
Server:
|
174
|
+
- nginx/1.4.1
|
175
|
+
Date:
|
176
|
+
- Fri, 25 Oct 2013 06:58:49 GMT
|
177
|
+
Content-Type:
|
178
|
+
- application/json; charset=UTF-8
|
179
|
+
Content-Length:
|
180
|
+
- '2708'
|
181
|
+
Connection:
|
182
|
+
- keep-alive
|
183
|
+
X-Asana-Content-String-Length:
|
184
|
+
- '2708'
|
185
|
+
Set-Cookie:
|
186
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
187
|
+
- server=prod-ws041.ec2|UmoWr; path=/
|
188
|
+
Pragma:
|
189
|
+
- no-cache
|
190
|
+
Cache-Control:
|
191
|
+
- no-store
|
192
|
+
X-Server-Name:
|
193
|
+
- prod-ws041.ec2
|
194
|
+
X-Asana-Preferred-Release-Revision:
|
195
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
196
|
+
X-Robots-Tag:
|
197
|
+
- none
|
198
|
+
Strict-Transport-Security:
|
199
|
+
- max-age=31536000; includeSubDomains
|
200
|
+
body:
|
201
|
+
encoding: US-ASCII
|
202
|
+
string: ! '{"data":[{"id":8336823744667,"name":"Test task"},{"id":8147271031630,"name":"Integrate
|
203
|
+
BitCoin payment processor"},{"id":8118306519142,"name":"Add badges to fontello-rails"},{"id":8248338362310,"name":"Read
|
204
|
+
the \"Secrets of the JavaScript ninja\" book"},{"id":8040754108593,"name":"Read
|
205
|
+
the GTD book"},{"id":8186067335294,"name":"Jump into Cobook for contacts"},{"id":8040754108599,"name":"The
|
206
|
+
Talk"},{"id":8041196568482,"name":"American Crew Molding"},{"id":8041196568483,"name":"Hair
|
207
|
+
Spray?"},{"id":8039642124734,"name":"Integrate skindler.com email deliveries
|
208
|
+
ending in spam"},{"id":8039642124732,"name":"Integrate profile code"},{"id":8039642124724,"name":"Update
|
209
|
+
swagger-ui on server"},{"id":8041196568542,"name":"Update most gems"},{"id":8040754108597,"name":"Move
|
210
|
+
data out of staging server"},{"id":8040754108595,"name":"Get grunt-sed"},{"id":8040754108588,"name":"Try
|
211
|
+
Agora"},{"id":8040754108539,"name":"Enhance Swagger UI"},{"id":8040754108535,"name":"Resuscitate
|
212
|
+
blog"},{"id":8040754108533,"name":"Remove social accounts"},{"id":8040754108534,"name":"Check
|
213
|
+
turbulence project"},{"id":8039642124725,"name":"Shoes"},{"id":8039642124722,"name":"Jean"},{"id":8039642124720,"name":"T-Shirts"},{"id":8039642124718,"name":"Fix
|
214
|
+
Writebar multi-filtering"},{"id":8039642124716,"name":"Fix Writebar focus
|
215
|
+
and scrolling issues"},{"id":8039642124714,"name":"Modify streams views"},{"id":8039642124712,"name":"Add
|
216
|
+
task states"},{"id":8039642124710,"name":"Integrate Diana''s landing page
|
217
|
+
design"},{"id":8039642124708,"name":"Improve design for notification mails"},{"id":8039642124706,"name":"Watch
|
218
|
+
RejectJS conference videos"},{"id":8039642124704,"name":"Re-enable MongoDB
|
219
|
+
auth"},{"id":8039642124702,"name":"Purge account connections"},{"id":8039642124699,"name":"Add
|
220
|
+
backend for task sections"},{"id":8039642124698,"name":"Update vagrant"},{"id":8040754108549,"name":"Check
|
221
|
+
the Drafts app"},{"id":8040754108584,"name":"Add to celebs note"},{"id":8045769322086,"name":"Update
|
222
|
+
to Ruby 2"},{"id":8045769322089,"name":"Upgrade to Rails 4"},{"id":8039428979858,"name":"Add
|
223
|
+
vhost for Yasmany"},{"id":8117307109046,"name":"Follow-up on Mladen''s lawyer
|
224
|
+
friend"},{"id":8039642124727,"name":"Get a haircut"},{"id":8147271031620,"name":"Shave"},{"id":8336825082479,"name":"Shave"},{"id":8040754108590,"name":"Backup
|
225
|
+
Evernote notes to external drive"},{"id":8155686700712,"name":"Shave"},{"id":8147271031626,"name":"Change
|
226
|
+
hostel note to Kelly''s format"},{"id":8202413378179,"name":"Setup VPN on
|
227
|
+
nexus 7"},{"id":8210482847796,"name":"Shave"},{"id":8248338362315,"name":"Buy
|
228
|
+
handkerchiefs"},{"id":8248338362319,"name":"Install http://tvshowsapp.com"},{"id":8252558577890,"name":"Shave"},{"id":8286020040511,"name":"Shave"}]}'
|
229
|
+
http_version:
|
230
|
+
recorded_at: Fri, 25 Oct 2013 06:58:47 GMT
|
231
|
+
- request:
|
232
|
+
method: get
|
233
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8336823744667
|
234
|
+
body:
|
235
|
+
encoding: US-ASCII
|
236
|
+
string: ''
|
237
|
+
headers:
|
238
|
+
Accept:
|
239
|
+
- application/json
|
240
|
+
Accept-Encoding:
|
241
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
242
|
+
User-Agent:
|
243
|
+
- Ruby
|
244
|
+
response:
|
245
|
+
status:
|
246
|
+
code: 200
|
247
|
+
message: OK
|
248
|
+
headers:
|
249
|
+
Server:
|
250
|
+
- nginx/1.4.1
|
251
|
+
Date:
|
252
|
+
- Fri, 25 Oct 2013 06:58:50 GMT
|
253
|
+
Content-Type:
|
254
|
+
- application/json; charset=UTF-8
|
255
|
+
Content-Length:
|
256
|
+
- '442'
|
257
|
+
Connection:
|
258
|
+
- keep-alive
|
259
|
+
X-Asana-Content-String-Length:
|
260
|
+
- '442'
|
261
|
+
Set-Cookie:
|
262
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
263
|
+
- server=prod-ws044.ec2|UmoWr; path=/
|
264
|
+
Pragma:
|
265
|
+
- no-cache
|
266
|
+
Cache-Control:
|
267
|
+
- no-store
|
268
|
+
X-Server-Name:
|
269
|
+
- prod-ws044.ec2
|
270
|
+
X-Asana-Preferred-Release-Revision:
|
271
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
272
|
+
X-Robots-Tag:
|
273
|
+
- none
|
274
|
+
Strict-Transport-Security:
|
275
|
+
- max-age=31536000; includeSubDomains
|
276
|
+
body:
|
277
|
+
encoding: US-ASCII
|
278
|
+
string: ! '{"data":{"id":8336823744667,"created_at":"2013-10-25T06:58:10.280Z","modified_at":"2013-10-25T06:58:27.053Z","name":"Test
|
279
|
+
task","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"upcoming","completed_at":"2013-10-25T06:58:17.435Z","due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
280
|
+
Perez"}]}}'
|
281
|
+
http_version:
|
282
|
+
recorded_at: Fri, 25 Oct 2013 06:58:48 GMT
|
283
|
+
- request:
|
284
|
+
method: get
|
285
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8147271031630
|
286
|
+
body:
|
287
|
+
encoding: US-ASCII
|
288
|
+
string: ''
|
289
|
+
headers:
|
290
|
+
Accept:
|
291
|
+
- application/json
|
292
|
+
Accept-Encoding:
|
293
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
294
|
+
User-Agent:
|
295
|
+
- Ruby
|
296
|
+
response:
|
297
|
+
status:
|
298
|
+
code: 200
|
299
|
+
message: OK
|
300
|
+
headers:
|
301
|
+
Server:
|
302
|
+
- nginx/1.4.1
|
303
|
+
Date:
|
304
|
+
- Fri, 25 Oct 2013 06:58:51 GMT
|
305
|
+
Content-Type:
|
306
|
+
- application/json; charset=UTF-8
|
307
|
+
Content-Length:
|
308
|
+
- '485'
|
309
|
+
Connection:
|
310
|
+
- keep-alive
|
311
|
+
X-Asana-Content-String-Length:
|
312
|
+
- '485'
|
313
|
+
Set-Cookie:
|
314
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
315
|
+
- server=prod-ws054.ec2|UmoWr; path=/
|
316
|
+
Pragma:
|
317
|
+
- no-cache
|
318
|
+
Cache-Control:
|
319
|
+
- no-store
|
320
|
+
X-Server-Name:
|
321
|
+
- ip-10-151-109-42
|
322
|
+
X-Asana-Preferred-Release-Revision:
|
323
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
324
|
+
X-Robots-Tag:
|
325
|
+
- none
|
326
|
+
Strict-Transport-Security:
|
327
|
+
- max-age=31536000; includeSubDomains
|
328
|
+
body:
|
329
|
+
encoding: US-ASCII
|
330
|
+
string: ! '{"data":{"id":8147271031630,"created_at":"2013-10-16T02:56:30.817Z","modified_at":"2013-10-16T02:56:36.767Z","name":"Integrate
|
331
|
+
BitCoin payment processor","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
332
|
+
Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
333
|
+
Perez"}]}}'
|
334
|
+
http_version:
|
335
|
+
recorded_at: Fri, 25 Oct 2013 06:58:49 GMT
|
336
|
+
- request:
|
337
|
+
method: get
|
338
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8118306519142
|
339
|
+
body:
|
340
|
+
encoding: US-ASCII
|
341
|
+
string: ''
|
342
|
+
headers:
|
343
|
+
Accept:
|
344
|
+
- application/json
|
345
|
+
Accept-Encoding:
|
346
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
347
|
+
User-Agent:
|
348
|
+
- Ruby
|
349
|
+
response:
|
350
|
+
status:
|
351
|
+
code: 200
|
352
|
+
message: OK
|
353
|
+
headers:
|
354
|
+
Server:
|
355
|
+
- nginx/1.4.1
|
356
|
+
Date:
|
357
|
+
- Fri, 25 Oct 2013 06:58:52 GMT
|
358
|
+
Content-Type:
|
359
|
+
- application/json; charset=UTF-8
|
360
|
+
Content-Length:
|
361
|
+
- '477'
|
362
|
+
Connection:
|
363
|
+
- keep-alive
|
364
|
+
X-Asana-Content-String-Length:
|
365
|
+
- '477'
|
366
|
+
Set-Cookie:
|
367
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
368
|
+
- server=prod-ws027.ec2|UmoWr; path=/
|
369
|
+
Pragma:
|
370
|
+
- no-cache
|
371
|
+
Cache-Control:
|
372
|
+
- no-store
|
373
|
+
X-Server-Name:
|
374
|
+
- prod-ws027.ec2
|
375
|
+
X-Asana-Preferred-Release-Revision:
|
376
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
377
|
+
X-Robots-Tag:
|
378
|
+
- none
|
379
|
+
Strict-Transport-Security:
|
380
|
+
- max-age=31536000; includeSubDomains
|
381
|
+
body:
|
382
|
+
encoding: US-ASCII
|
383
|
+
string: ! '{"data":{"id":8118306519142,"created_at":"2013-10-11T06:01:56.641Z","modified_at":"2013-10-16T02:55:36.337Z","name":"Add
|
384
|
+
badges to fontello-rails","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
385
|
+
Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
386
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
387
|
+
Perez"}]}}'
|
388
|
+
http_version:
|
389
|
+
recorded_at: Fri, 25 Oct 2013 06:58:49 GMT
|
390
|
+
- request:
|
391
|
+
method: get
|
392
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8248338362310
|
393
|
+
body:
|
394
|
+
encoding: US-ASCII
|
395
|
+
string: ''
|
396
|
+
headers:
|
397
|
+
Accept:
|
398
|
+
- application/json
|
399
|
+
Accept-Encoding:
|
400
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
401
|
+
User-Agent:
|
402
|
+
- Ruby
|
403
|
+
response:
|
404
|
+
status:
|
405
|
+
code: 200
|
406
|
+
message: OK
|
407
|
+
headers:
|
408
|
+
Server:
|
409
|
+
- nginx/1.4.1
|
410
|
+
Date:
|
411
|
+
- Fri, 25 Oct 2013 06:58:53 GMT
|
412
|
+
Content-Type:
|
413
|
+
- application/json; charset=UTF-8
|
414
|
+
Content-Length:
|
415
|
+
- '498'
|
416
|
+
Connection:
|
417
|
+
- keep-alive
|
418
|
+
X-Asana-Content-String-Length:
|
419
|
+
- '498'
|
420
|
+
Set-Cookie:
|
421
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
422
|
+
- server=prod-ws026.ec2|UmoWs; path=/
|
423
|
+
Pragma:
|
424
|
+
- no-cache
|
425
|
+
Cache-Control:
|
426
|
+
- no-store
|
427
|
+
X-Server-Name:
|
428
|
+
- prod-ws026.ec2
|
429
|
+
X-Asana-Preferred-Release-Revision:
|
430
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
431
|
+
X-Robots-Tag:
|
432
|
+
- none
|
433
|
+
Strict-Transport-Security:
|
434
|
+
- max-age=31536000; includeSubDomains
|
435
|
+
body:
|
436
|
+
encoding: US-ASCII
|
437
|
+
string: ! '{"data":{"id":8248338362310,"created_at":"2013-10-19T21:58:16.708Z","modified_at":"2013-10-19T21:58:42.537Z","name":"Read
|
438
|
+
the \"Secrets of the JavaScript ninja\" book","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
439
|
+
Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
440
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
441
|
+
Perez"}]}}'
|
442
|
+
http_version:
|
443
|
+
recorded_at: Fri, 25 Oct 2013 06:58:50 GMT
|
444
|
+
- request:
|
445
|
+
method: get
|
446
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108593
|
447
|
+
body:
|
448
|
+
encoding: US-ASCII
|
449
|
+
string: ''
|
450
|
+
headers:
|
451
|
+
Accept:
|
452
|
+
- application/json
|
453
|
+
Accept-Encoding:
|
454
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
455
|
+
User-Agent:
|
456
|
+
- Ruby
|
457
|
+
response:
|
458
|
+
status:
|
459
|
+
code: 200
|
460
|
+
message: OK
|
461
|
+
headers:
|
462
|
+
Server:
|
463
|
+
- nginx/1.4.1
|
464
|
+
Date:
|
465
|
+
- Fri, 25 Oct 2013 06:58:53 GMT
|
466
|
+
Content-Type:
|
467
|
+
- application/json; charset=UTF-8
|
468
|
+
Content-Length:
|
469
|
+
- '466'
|
470
|
+
Connection:
|
471
|
+
- keep-alive
|
472
|
+
X-Asana-Content-String-Length:
|
473
|
+
- '466'
|
474
|
+
Set-Cookie:
|
475
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
476
|
+
- server=prod-ws040.ec2|UmoWs; path=/
|
477
|
+
Pragma:
|
478
|
+
- no-cache
|
479
|
+
Cache-Control:
|
480
|
+
- no-store
|
481
|
+
X-Server-Name:
|
482
|
+
- prod-ws040.ec2
|
483
|
+
X-Asana-Preferred-Release-Revision:
|
484
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
485
|
+
X-Robots-Tag:
|
486
|
+
- none
|
487
|
+
Strict-Transport-Security:
|
488
|
+
- max-age=31536000; includeSubDomains
|
489
|
+
body:
|
490
|
+
encoding: US-ASCII
|
491
|
+
string: ! '{"data":{"id":8040754108593,"created_at":"2013-10-07T04:13:35.054Z","modified_at":"2013-10-07T04:13:47.053Z","name":"Read
|
492
|
+
the GTD book","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
493
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
494
|
+
Perez"}]}}'
|
495
|
+
http_version:
|
496
|
+
recorded_at: Fri, 25 Oct 2013 06:58:51 GMT
|
497
|
+
- request:
|
498
|
+
method: get
|
499
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8186067335294
|
500
|
+
body:
|
501
|
+
encoding: US-ASCII
|
502
|
+
string: ''
|
503
|
+
headers:
|
504
|
+
Accept:
|
505
|
+
- application/json
|
506
|
+
Accept-Encoding:
|
507
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
508
|
+
User-Agent:
|
509
|
+
- Ruby
|
510
|
+
response:
|
511
|
+
status:
|
512
|
+
code: 200
|
513
|
+
message: OK
|
514
|
+
headers:
|
515
|
+
Server:
|
516
|
+
- nginx/1.4.1
|
517
|
+
Date:
|
518
|
+
- Fri, 25 Oct 2013 06:58:54 GMT
|
519
|
+
Content-Type:
|
520
|
+
- application/json; charset=UTF-8
|
521
|
+
Content-Length:
|
522
|
+
- '441'
|
523
|
+
Connection:
|
524
|
+
- keep-alive
|
525
|
+
X-Asana-Content-String-Length:
|
526
|
+
- '441'
|
527
|
+
Set-Cookie:
|
528
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
529
|
+
- server=prod-ws033.ec2|UmoWs; path=/
|
530
|
+
Pragma:
|
531
|
+
- no-cache
|
532
|
+
Cache-Control:
|
533
|
+
- no-store
|
534
|
+
X-Server-Name:
|
535
|
+
- prod-ws033.ec2
|
536
|
+
X-Asana-Preferred-Release-Revision:
|
537
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
538
|
+
X-Robots-Tag:
|
539
|
+
- none
|
540
|
+
Strict-Transport-Security:
|
541
|
+
- max-age=31536000; includeSubDomains
|
542
|
+
body:
|
543
|
+
encoding: US-ASCII
|
544
|
+
string: ! '{"data":{"id":8186067335294,"created_at":"2013-10-16T01:03:34.013Z","modified_at":"2013-10-16T01:05:11.323Z","name":"Jump
|
545
|
+
into Cobook for contacts","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
546
|
+
Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
547
|
+
Perez"}]}}'
|
548
|
+
http_version:
|
549
|
+
recorded_at: Fri, 25 Oct 2013 06:58:52 GMT
|
550
|
+
- request:
|
551
|
+
method: get
|
552
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108599
|
553
|
+
body:
|
554
|
+
encoding: US-ASCII
|
555
|
+
string: ''
|
556
|
+
headers:
|
557
|
+
Accept:
|
558
|
+
- application/json
|
559
|
+
Accept-Encoding:
|
560
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
561
|
+
User-Agent:
|
562
|
+
- Ruby
|
563
|
+
response:
|
564
|
+
status:
|
565
|
+
code: 200
|
566
|
+
message: OK
|
567
|
+
headers:
|
568
|
+
Server:
|
569
|
+
- nginx/1.4.1
|
570
|
+
Date:
|
571
|
+
- Fri, 25 Oct 2013 06:58:57 GMT
|
572
|
+
Content-Type:
|
573
|
+
- application/json; charset=UTF-8
|
574
|
+
Content-Length:
|
575
|
+
- '441'
|
576
|
+
Connection:
|
577
|
+
- keep-alive
|
578
|
+
X-Asana-Content-String-Length:
|
579
|
+
- '441'
|
580
|
+
Set-Cookie:
|
581
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
582
|
+
- server=prod-ws000.ec2|UmoWt; path=/
|
583
|
+
Pragma:
|
584
|
+
- no-cache
|
585
|
+
Cache-Control:
|
586
|
+
- no-store
|
587
|
+
X-Server-Name:
|
588
|
+
- prod-ws000.ec2
|
589
|
+
X-Asana-Preferred-Release-Revision:
|
590
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
591
|
+
X-Robots-Tag:
|
592
|
+
- none
|
593
|
+
Strict-Transport-Security:
|
594
|
+
- max-age=31536000; includeSubDomains
|
595
|
+
body:
|
596
|
+
encoding: US-ASCII
|
597
|
+
string: ! '{"data":{"id":8040754108599,"created_at":"2013-10-07T04:54:59.443Z","modified_at":"2013-10-11T03:57:04.268Z","name":"The
|
598
|
+
Talk","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"upcoming","completed_at":"2013-10-11T03:56:59.777Z","due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
599
|
+
Perez"}]}}'
|
600
|
+
http_version:
|
601
|
+
recorded_at: Fri, 25 Oct 2013 06:58:55 GMT
|
602
|
+
- request:
|
603
|
+
method: get
|
604
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8041196568482
|
605
|
+
body:
|
606
|
+
encoding: US-ASCII
|
607
|
+
string: ''
|
608
|
+
headers:
|
609
|
+
Accept:
|
610
|
+
- application/json
|
611
|
+
Accept-Encoding:
|
612
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
613
|
+
User-Agent:
|
614
|
+
- Ruby
|
615
|
+
response:
|
616
|
+
status:
|
617
|
+
code: 200
|
618
|
+
message: OK
|
619
|
+
headers:
|
620
|
+
Server:
|
621
|
+
- nginx/1.4.1
|
622
|
+
Date:
|
623
|
+
- Fri, 25 Oct 2013 06:58:58 GMT
|
624
|
+
Content-Type:
|
625
|
+
- application/json; charset=UTF-8
|
626
|
+
Content-Length:
|
627
|
+
- '468'
|
628
|
+
Connection:
|
629
|
+
- keep-alive
|
630
|
+
X-Asana-Content-String-Length:
|
631
|
+
- '468'
|
632
|
+
Set-Cookie:
|
633
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
634
|
+
- server=prod-ws022.ec2|UmoWt; path=/
|
635
|
+
Pragma:
|
636
|
+
- no-cache
|
637
|
+
Cache-Control:
|
638
|
+
- no-store
|
639
|
+
X-Server-Name:
|
640
|
+
- prod-ws022.ec2
|
641
|
+
X-Asana-Preferred-Release-Revision:
|
642
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
643
|
+
X-Robots-Tag:
|
644
|
+
- none
|
645
|
+
Strict-Transport-Security:
|
646
|
+
- max-age=31536000; includeSubDomains
|
647
|
+
body:
|
648
|
+
encoding: US-ASCII
|
649
|
+
string: ! '{"data":{"id":8041196568482,"created_at":"2013-10-07T05:12:29.581Z","modified_at":"2013-10-07T05:13:04.851Z","name":"American
|
650
|
+
Crew Molding","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
651
|
+
Perez"}]}}'
|
652
|
+
http_version:
|
653
|
+
recorded_at: Fri, 25 Oct 2013 06:58:55 GMT
|
654
|
+
- request:
|
655
|
+
method: get
|
656
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8041196568483
|
657
|
+
body:
|
658
|
+
encoding: US-ASCII
|
659
|
+
string: ''
|
660
|
+
headers:
|
661
|
+
Accept:
|
662
|
+
- application/json
|
663
|
+
Accept-Encoding:
|
664
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
665
|
+
User-Agent:
|
666
|
+
- Ruby
|
667
|
+
response:
|
668
|
+
status:
|
669
|
+
code: 200
|
670
|
+
message: OK
|
671
|
+
headers:
|
672
|
+
Server:
|
673
|
+
- nginx/1.4.1
|
674
|
+
Date:
|
675
|
+
- Fri, 25 Oct 2013 06:59:01 GMT
|
676
|
+
Content-Type:
|
677
|
+
- application/json; charset=UTF-8
|
678
|
+
Content-Length:
|
679
|
+
- '458'
|
680
|
+
Connection:
|
681
|
+
- keep-alive
|
682
|
+
X-Asana-Content-String-Length:
|
683
|
+
- '458'
|
684
|
+
Set-Cookie:
|
685
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
686
|
+
- server=prod-ws006.ec2|UmoWu; path=/
|
687
|
+
Pragma:
|
688
|
+
- no-cache
|
689
|
+
Cache-Control:
|
690
|
+
- no-store
|
691
|
+
X-Server-Name:
|
692
|
+
- prod-ws006.ec2
|
693
|
+
X-Asana-Preferred-Release-Revision:
|
694
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
695
|
+
X-Robots-Tag:
|
696
|
+
- none
|
697
|
+
Strict-Transport-Security:
|
698
|
+
- max-age=31536000; includeSubDomains
|
699
|
+
body:
|
700
|
+
encoding: US-ASCII
|
701
|
+
string: ! '{"data":{"id":8041196568483,"created_at":"2013-10-07T05:12:46.401Z","modified_at":"2013-10-07T05:13:04.851Z","name":"Hair
|
702
|
+
Spray?","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
703
|
+
Perez"}]}}'
|
704
|
+
http_version:
|
705
|
+
recorded_at: Fri, 25 Oct 2013 06:58:58 GMT
|
706
|
+
- request:
|
707
|
+
method: get
|
708
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124734
|
709
|
+
body:
|
710
|
+
encoding: US-ASCII
|
711
|
+
string: ''
|
712
|
+
headers:
|
713
|
+
Accept:
|
714
|
+
- application/json
|
715
|
+
Accept-Encoding:
|
716
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
717
|
+
User-Agent:
|
718
|
+
- Ruby
|
719
|
+
response:
|
720
|
+
status:
|
721
|
+
code: 200
|
722
|
+
message: OK
|
723
|
+
headers:
|
724
|
+
Server:
|
725
|
+
- nginx/1.4.1
|
726
|
+
Date:
|
727
|
+
- Fri, 25 Oct 2013 06:59:01 GMT
|
728
|
+
Content-Type:
|
729
|
+
- application/json; charset=UTF-8
|
730
|
+
Content-Length:
|
731
|
+
- '501'
|
732
|
+
Connection:
|
733
|
+
- keep-alive
|
734
|
+
X-Asana-Content-String-Length:
|
735
|
+
- '501'
|
736
|
+
Set-Cookie:
|
737
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
738
|
+
- server=prod-ws013.ec2|UmoWu; path=/
|
739
|
+
Pragma:
|
740
|
+
- no-cache
|
741
|
+
Cache-Control:
|
742
|
+
- no-store
|
743
|
+
X-Server-Name:
|
744
|
+
- prod-ws013.ec2
|
745
|
+
X-Asana-Preferred-Release-Revision:
|
746
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
747
|
+
X-Robots-Tag:
|
748
|
+
- none
|
749
|
+
Strict-Transport-Security:
|
750
|
+
- max-age=31536000; includeSubDomains
|
751
|
+
body:
|
752
|
+
encoding: US-ASCII
|
753
|
+
string: ! '{"data":{"id":8039642124734,"created_at":"2013-10-07T03:58:17.077Z","modified_at":"2013-10-07T03:59:14.561Z","name":"Integrate
|
754
|
+
skindler.com email deliveries ending in spam","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
755
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
756
|
+
Perez"}]}}'
|
757
|
+
http_version:
|
758
|
+
recorded_at: Fri, 25 Oct 2013 06:58:59 GMT
|
759
|
+
- request:
|
760
|
+
method: get
|
761
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124732
|
762
|
+
body:
|
763
|
+
encoding: US-ASCII
|
764
|
+
string: ''
|
765
|
+
headers:
|
766
|
+
Accept:
|
767
|
+
- application/json
|
768
|
+
Accept-Encoding:
|
769
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
770
|
+
User-Agent:
|
771
|
+
- Ruby
|
772
|
+
response:
|
773
|
+
status:
|
774
|
+
code: 200
|
775
|
+
message: OK
|
776
|
+
headers:
|
777
|
+
Server:
|
778
|
+
- nginx/1.4.1
|
779
|
+
Date:
|
780
|
+
- Fri, 25 Oct 2013 06:59:04 GMT
|
781
|
+
Content-Type:
|
782
|
+
- application/json; charset=UTF-8
|
783
|
+
Content-Length:
|
784
|
+
- '469'
|
785
|
+
Connection:
|
786
|
+
- keep-alive
|
787
|
+
X-Asana-Content-String-Length:
|
788
|
+
- '469'
|
789
|
+
Set-Cookie:
|
790
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
791
|
+
- server=prod-ws017.ec2|UmoWu; path=/
|
792
|
+
Pragma:
|
793
|
+
- no-cache
|
794
|
+
Cache-Control:
|
795
|
+
- no-store
|
796
|
+
X-Server-Name:
|
797
|
+
- prod-ws017.ec2
|
798
|
+
X-Asana-Preferred-Release-Revision:
|
799
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
800
|
+
X-Robots-Tag:
|
801
|
+
- none
|
802
|
+
Strict-Transport-Security:
|
803
|
+
- max-age=31536000; includeSubDomains
|
804
|
+
body:
|
805
|
+
encoding: US-ASCII
|
806
|
+
string: ! '{"data":{"id":8039642124732,"created_at":"2013-10-07T03:57:45.229Z","modified_at":"2013-10-07T03:58:56.260Z","name":"Integrate
|
807
|
+
profile code","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
808
|
+
Perez"}]}}'
|
809
|
+
http_version:
|
810
|
+
recorded_at: Fri, 25 Oct 2013 06:59:02 GMT
|
811
|
+
- request:
|
812
|
+
method: get
|
813
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124724
|
814
|
+
body:
|
815
|
+
encoding: US-ASCII
|
816
|
+
string: ''
|
817
|
+
headers:
|
818
|
+
Accept:
|
819
|
+
- application/json
|
820
|
+
Accept-Encoding:
|
821
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
822
|
+
User-Agent:
|
823
|
+
- Ruby
|
824
|
+
response:
|
825
|
+
status:
|
826
|
+
code: 200
|
827
|
+
message: OK
|
828
|
+
headers:
|
829
|
+
Server:
|
830
|
+
- nginx/1.4.1
|
831
|
+
Date:
|
832
|
+
- Fri, 25 Oct 2013 06:59:05 GMT
|
833
|
+
Content-Type:
|
834
|
+
- application/json; charset=UTF-8
|
835
|
+
Content-Length:
|
836
|
+
- '474'
|
837
|
+
Connection:
|
838
|
+
- keep-alive
|
839
|
+
X-Asana-Content-String-Length:
|
840
|
+
- '474'
|
841
|
+
Set-Cookie:
|
842
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
843
|
+
- server=prod-ws022.ec2|UmoWv; path=/
|
844
|
+
Pragma:
|
845
|
+
- no-cache
|
846
|
+
Cache-Control:
|
847
|
+
- no-store
|
848
|
+
X-Server-Name:
|
849
|
+
- prod-ws022.ec2
|
850
|
+
X-Asana-Preferred-Release-Revision:
|
851
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
852
|
+
X-Robots-Tag:
|
853
|
+
- none
|
854
|
+
Strict-Transport-Security:
|
855
|
+
- max-age=31536000; includeSubDomains
|
856
|
+
body:
|
857
|
+
encoding: US-ASCII
|
858
|
+
string: ! '{"data":{"id":8039642124724,"created_at":"2013-10-07T03:56:07.926Z","modified_at":"2013-10-07T03:58:56.260Z","name":"Update
|
859
|
+
swagger-ui on server","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
860
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
861
|
+
Perez"}]}}'
|
862
|
+
http_version:
|
863
|
+
recorded_at: Fri, 25 Oct 2013 06:59:03 GMT
|
864
|
+
- request:
|
865
|
+
method: get
|
866
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8041196568542
|
867
|
+
body:
|
868
|
+
encoding: US-ASCII
|
869
|
+
string: ''
|
870
|
+
headers:
|
871
|
+
Accept:
|
872
|
+
- application/json
|
873
|
+
Accept-Encoding:
|
874
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
875
|
+
User-Agent:
|
876
|
+
- Ruby
|
877
|
+
response:
|
878
|
+
status:
|
879
|
+
code: 200
|
880
|
+
message: OK
|
881
|
+
headers:
|
882
|
+
Server:
|
883
|
+
- nginx/1.4.1
|
884
|
+
Date:
|
885
|
+
- Fri, 25 Oct 2013 06:59:06 GMT
|
886
|
+
Content-Type:
|
887
|
+
- application/json; charset=UTF-8
|
888
|
+
Content-Length:
|
889
|
+
- '487'
|
890
|
+
Connection:
|
891
|
+
- keep-alive
|
892
|
+
X-Asana-Content-String-Length:
|
893
|
+
- '487'
|
894
|
+
Set-Cookie:
|
895
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
896
|
+
- server=prod-ws022.ec2|UmoWv; path=/
|
897
|
+
Pragma:
|
898
|
+
- no-cache
|
899
|
+
Cache-Control:
|
900
|
+
- no-store
|
901
|
+
X-Server-Name:
|
902
|
+
- prod-ws022.ec2
|
903
|
+
X-Asana-Preferred-Release-Revision:
|
904
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
905
|
+
X-Robots-Tag:
|
906
|
+
- none
|
907
|
+
Strict-Transport-Security:
|
908
|
+
- max-age=31536000; includeSubDomains
|
909
|
+
body:
|
910
|
+
encoding: US-ASCII
|
911
|
+
string: ! '{"data":{"id":8041196568542,"created_at":"2013-10-07T12:06:32.185Z","modified_at":"2013-10-07T18:23:16.195Z","name":"Update
|
912
|
+
most gems","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"upcoming","completed_at":"2013-10-07T18:23:15.318Z","due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
913
|
+
Perez"}]}}'
|
914
|
+
http_version:
|
915
|
+
recorded_at: Fri, 25 Oct 2013 06:59:04 GMT
|
916
|
+
- request:
|
917
|
+
method: get
|
918
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108597
|
919
|
+
body:
|
920
|
+
encoding: US-ASCII
|
921
|
+
string: ''
|
922
|
+
headers:
|
923
|
+
Accept:
|
924
|
+
- application/json
|
925
|
+
Accept-Encoding:
|
926
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
927
|
+
User-Agent:
|
928
|
+
- Ruby
|
929
|
+
response:
|
930
|
+
status:
|
931
|
+
code: 200
|
932
|
+
message: OK
|
933
|
+
headers:
|
934
|
+
Server:
|
935
|
+
- nginx/1.4.1
|
936
|
+
Date:
|
937
|
+
- Fri, 25 Oct 2013 06:59:07 GMT
|
938
|
+
Content-Type:
|
939
|
+
- application/json; charset=UTF-8
|
940
|
+
Content-Length:
|
941
|
+
- '581'
|
942
|
+
Connection:
|
943
|
+
- keep-alive
|
944
|
+
X-Asana-Content-String-Length:
|
945
|
+
- '581'
|
946
|
+
Set-Cookie:
|
947
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
948
|
+
- server=prod-ws026.ec2|UmoWv; path=/
|
949
|
+
Pragma:
|
950
|
+
- no-cache
|
951
|
+
Cache-Control:
|
952
|
+
- no-store
|
953
|
+
X-Server-Name:
|
954
|
+
- prod-ws026.ec2
|
955
|
+
X-Asana-Preferred-Release-Revision:
|
956
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
957
|
+
X-Robots-Tag:
|
958
|
+
- none
|
959
|
+
Strict-Transport-Security:
|
960
|
+
- max-age=31536000; includeSubDomains
|
961
|
+
body:
|
962
|
+
encoding: US-ASCII
|
963
|
+
string: ! '{"data":{"id":8040754108597,"created_at":"2013-10-07T04:15:40.730Z","modified_at":"2013-10-07T04:16:54.577Z","name":"Move
|
964
|
+
data out of staging server","notes":"evernote:///view/5675974/s53/ab1e1502-62ac-469d-82c4-aeeba5be340d/ab1e1502-62ac-469d-82c4-aeeba5be340d/","assignee":{"id":7239846033035,"name":"Adrian
|
965
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
966
|
+
Perez"}]}}'
|
967
|
+
http_version:
|
968
|
+
recorded_at: Fri, 25 Oct 2013 06:59:04 GMT
|
969
|
+
- request:
|
970
|
+
method: get
|
971
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108595
|
972
|
+
body:
|
973
|
+
encoding: US-ASCII
|
974
|
+
string: ''
|
975
|
+
headers:
|
976
|
+
Accept:
|
977
|
+
- application/json
|
978
|
+
Accept-Encoding:
|
979
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
980
|
+
User-Agent:
|
981
|
+
- Ruby
|
982
|
+
response:
|
983
|
+
status:
|
984
|
+
code: 200
|
985
|
+
message: OK
|
986
|
+
headers:
|
987
|
+
Server:
|
988
|
+
- nginx/1.4.1
|
989
|
+
Date:
|
990
|
+
- Fri, 25 Oct 2013 06:59:08 GMT
|
991
|
+
Content-Type:
|
992
|
+
- application/json; charset=UTF-8
|
993
|
+
Content-Length:
|
994
|
+
- '562'
|
995
|
+
Connection:
|
996
|
+
- keep-alive
|
997
|
+
X-Asana-Content-String-Length:
|
998
|
+
- '562'
|
999
|
+
Set-Cookie:
|
1000
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1001
|
+
- server=prod-ws039.ec2|UmoWv; path=/
|
1002
|
+
Pragma:
|
1003
|
+
- no-cache
|
1004
|
+
Cache-Control:
|
1005
|
+
- no-store
|
1006
|
+
X-Server-Name:
|
1007
|
+
- prod-ws039.ec2
|
1008
|
+
X-Asana-Preferred-Release-Revision:
|
1009
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1010
|
+
X-Robots-Tag:
|
1011
|
+
- none
|
1012
|
+
Strict-Transport-Security:
|
1013
|
+
- max-age=31536000; includeSubDomains
|
1014
|
+
body:
|
1015
|
+
encoding: US-ASCII
|
1016
|
+
string: ! '{"data":{"id":8040754108595,"created_at":"2013-10-07T04:14:26.354Z","modified_at":"2013-10-07T04:16:52.661Z","name":"Get
|
1017
|
+
grunt-sed","notes":"evernote:///view/5675974/s53/a360e448-a401-40cd-8ba3-93a50fb4151a/a360e448-a401-40cd-8ba3-93a50fb4151a/","assignee":{"id":7239846033035,"name":"Adrian
|
1018
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
1019
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1020
|
+
Perez"}]}}'
|
1021
|
+
http_version:
|
1022
|
+
recorded_at: Fri, 25 Oct 2013 06:59:05 GMT
|
1023
|
+
- request:
|
1024
|
+
method: get
|
1025
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108588
|
1026
|
+
body:
|
1027
|
+
encoding: US-ASCII
|
1028
|
+
string: ''
|
1029
|
+
headers:
|
1030
|
+
Accept:
|
1031
|
+
- application/json
|
1032
|
+
Accept-Encoding:
|
1033
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1034
|
+
User-Agent:
|
1035
|
+
- Ruby
|
1036
|
+
response:
|
1037
|
+
status:
|
1038
|
+
code: 200
|
1039
|
+
message: OK
|
1040
|
+
headers:
|
1041
|
+
Server:
|
1042
|
+
- nginx/1.4.1
|
1043
|
+
Date:
|
1044
|
+
- Fri, 25 Oct 2013 06:59:08 GMT
|
1045
|
+
Content-Type:
|
1046
|
+
- application/json; charset=UTF-8
|
1047
|
+
Content-Length:
|
1048
|
+
- '461'
|
1049
|
+
Connection:
|
1050
|
+
- keep-alive
|
1051
|
+
X-Asana-Content-String-Length:
|
1052
|
+
- '461'
|
1053
|
+
Set-Cookie:
|
1054
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1055
|
+
- server=prod-ws029.ec2|UmoWv; path=/
|
1056
|
+
Pragma:
|
1057
|
+
- no-cache
|
1058
|
+
Cache-Control:
|
1059
|
+
- no-store
|
1060
|
+
X-Server-Name:
|
1061
|
+
- prod-ws029.ec2
|
1062
|
+
X-Asana-Preferred-Release-Revision:
|
1063
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1064
|
+
X-Robots-Tag:
|
1065
|
+
- none
|
1066
|
+
Strict-Transport-Security:
|
1067
|
+
- max-age=31536000; includeSubDomains
|
1068
|
+
body:
|
1069
|
+
encoding: US-ASCII
|
1070
|
+
string: ! '{"data":{"id":8040754108588,"created_at":"2013-10-07T04:10:36.946Z","modified_at":"2013-10-07T04:16:50.670Z","name":"Try
|
1071
|
+
Agora","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124686,"name":"Someday/Maybe"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1072
|
+
Perez"}]}}'
|
1073
|
+
http_version:
|
1074
|
+
recorded_at: Fri, 25 Oct 2013 06:59:06 GMT
|
1075
|
+
- request:
|
1076
|
+
method: get
|
1077
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108539
|
1078
|
+
body:
|
1079
|
+
encoding: US-ASCII
|
1080
|
+
string: ''
|
1081
|
+
headers:
|
1082
|
+
Accept:
|
1083
|
+
- application/json
|
1084
|
+
Accept-Encoding:
|
1085
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1086
|
+
User-Agent:
|
1087
|
+
- Ruby
|
1088
|
+
response:
|
1089
|
+
status:
|
1090
|
+
code: 200
|
1091
|
+
message: OK
|
1092
|
+
headers:
|
1093
|
+
Server:
|
1094
|
+
- nginx/1.4.1
|
1095
|
+
Date:
|
1096
|
+
- Fri, 25 Oct 2013 06:59:14 GMT
|
1097
|
+
Content-Type:
|
1098
|
+
- application/json; charset=UTF-8
|
1099
|
+
Content-Length:
|
1100
|
+
- '465'
|
1101
|
+
Connection:
|
1102
|
+
- keep-alive
|
1103
|
+
X-Asana-Content-String-Length:
|
1104
|
+
- '465'
|
1105
|
+
Set-Cookie:
|
1106
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1107
|
+
- server=prod-ws044.ec2|UmoWx; path=/
|
1108
|
+
Pragma:
|
1109
|
+
- no-cache
|
1110
|
+
Cache-Control:
|
1111
|
+
- no-store
|
1112
|
+
X-Server-Name:
|
1113
|
+
- prod-ws044.ec2
|
1114
|
+
X-Asana-Preferred-Release-Revision:
|
1115
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1116
|
+
X-Robots-Tag:
|
1117
|
+
- none
|
1118
|
+
Strict-Transport-Security:
|
1119
|
+
- max-age=31536000; includeSubDomains
|
1120
|
+
body:
|
1121
|
+
encoding: US-ASCII
|
1122
|
+
string: ! '{"data":{"id":8040754108539,"created_at":"2013-10-07T04:02:13.950Z","modified_at":"2013-10-07T04:16:45.748Z","name":"Enhance
|
1123
|
+
Swagger UI","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1124
|
+
Perez"}]}}'
|
1125
|
+
http_version:
|
1126
|
+
recorded_at: Fri, 25 Oct 2013 06:59:12 GMT
|
1127
|
+
- request:
|
1128
|
+
method: get
|
1129
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108535
|
1130
|
+
body:
|
1131
|
+
encoding: US-ASCII
|
1132
|
+
string: ''
|
1133
|
+
headers:
|
1134
|
+
Accept:
|
1135
|
+
- application/json
|
1136
|
+
Accept-Encoding:
|
1137
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1138
|
+
User-Agent:
|
1139
|
+
- Ruby
|
1140
|
+
response:
|
1141
|
+
status:
|
1142
|
+
code: 200
|
1143
|
+
message: OK
|
1144
|
+
headers:
|
1145
|
+
Server:
|
1146
|
+
- nginx/1.4.1
|
1147
|
+
Date:
|
1148
|
+
- Fri, 25 Oct 2013 06:59:16 GMT
|
1149
|
+
Content-Type:
|
1150
|
+
- application/json; charset=UTF-8
|
1151
|
+
Content-Length:
|
1152
|
+
- '468'
|
1153
|
+
Connection:
|
1154
|
+
- keep-alive
|
1155
|
+
X-Asana-Content-String-Length:
|
1156
|
+
- '468'
|
1157
|
+
Set-Cookie:
|
1158
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1159
|
+
- server=prod-ws008.ec2|UmoWx; path=/
|
1160
|
+
Pragma:
|
1161
|
+
- no-cache
|
1162
|
+
Cache-Control:
|
1163
|
+
- no-store
|
1164
|
+
X-Server-Name:
|
1165
|
+
- prod-ws008.ec2
|
1166
|
+
X-Asana-Preferred-Release-Revision:
|
1167
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1168
|
+
X-Robots-Tag:
|
1169
|
+
- none
|
1170
|
+
Strict-Transport-Security:
|
1171
|
+
- max-age=31536000; includeSubDomains
|
1172
|
+
body:
|
1173
|
+
encoding: US-ASCII
|
1174
|
+
string: ! '{"data":{"id":8040754108535,"created_at":"2013-10-07T04:01:42.061Z","modified_at":"2013-10-07T05:16:01.462Z","name":"Resuscitate
|
1175
|
+
blog","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124686,"name":"Someday/Maybe"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1176
|
+
Perez"}]}}'
|
1177
|
+
http_version:
|
1178
|
+
recorded_at: Fri, 25 Oct 2013 06:59:13 GMT
|
1179
|
+
- request:
|
1180
|
+
method: get
|
1181
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108533
|
1182
|
+
body:
|
1183
|
+
encoding: US-ASCII
|
1184
|
+
string: ''
|
1185
|
+
headers:
|
1186
|
+
Accept:
|
1187
|
+
- application/json
|
1188
|
+
Accept-Encoding:
|
1189
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1190
|
+
User-Agent:
|
1191
|
+
- Ruby
|
1192
|
+
response:
|
1193
|
+
status:
|
1194
|
+
code: 200
|
1195
|
+
message: OK
|
1196
|
+
headers:
|
1197
|
+
Server:
|
1198
|
+
- nginx/1.4.1
|
1199
|
+
Date:
|
1200
|
+
- Fri, 25 Oct 2013 06:59:16 GMT
|
1201
|
+
Content-Type:
|
1202
|
+
- application/json; charset=UTF-8
|
1203
|
+
Content-Length:
|
1204
|
+
- '474'
|
1205
|
+
Connection:
|
1206
|
+
- keep-alive
|
1207
|
+
X-Asana-Content-String-Length:
|
1208
|
+
- '474'
|
1209
|
+
Set-Cookie:
|
1210
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1211
|
+
- server=prod-ws018.ec2|UmoWx; path=/
|
1212
|
+
Pragma:
|
1213
|
+
- no-cache
|
1214
|
+
Cache-Control:
|
1215
|
+
- no-store
|
1216
|
+
X-Server-Name:
|
1217
|
+
- prod-ws018.ec2
|
1218
|
+
X-Asana-Preferred-Release-Revision:
|
1219
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1220
|
+
X-Robots-Tag:
|
1221
|
+
- none
|
1222
|
+
Strict-Transport-Security:
|
1223
|
+
- max-age=31536000; includeSubDomains
|
1224
|
+
body:
|
1225
|
+
encoding: US-ASCII
|
1226
|
+
string: ! '{"data":{"id":8040754108533,"created_at":"2013-10-07T04:00:39.090Z","modified_at":"2013-10-07T04:16:42.522Z","name":"Remove
|
1227
|
+
social accounts","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1228
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124686,"name":"Someday/Maybe"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1229
|
+
Perez"}]}}'
|
1230
|
+
http_version:
|
1231
|
+
recorded_at: Fri, 25 Oct 2013 06:59:14 GMT
|
1232
|
+
- request:
|
1233
|
+
method: get
|
1234
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108534
|
1235
|
+
body:
|
1236
|
+
encoding: US-ASCII
|
1237
|
+
string: ''
|
1238
|
+
headers:
|
1239
|
+
Accept:
|
1240
|
+
- application/json
|
1241
|
+
Accept-Encoding:
|
1242
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1243
|
+
User-Agent:
|
1244
|
+
- Ruby
|
1245
|
+
response:
|
1246
|
+
status:
|
1247
|
+
code: 200
|
1248
|
+
message: OK
|
1249
|
+
headers:
|
1250
|
+
Server:
|
1251
|
+
- nginx/1.4.1
|
1252
|
+
Date:
|
1253
|
+
- Fri, 25 Oct 2013 06:59:17 GMT
|
1254
|
+
Content-Type:
|
1255
|
+
- application/json; charset=UTF-8
|
1256
|
+
Content-Length:
|
1257
|
+
- '524'
|
1258
|
+
Connection:
|
1259
|
+
- keep-alive
|
1260
|
+
X-Asana-Content-String-Length:
|
1261
|
+
- '524'
|
1262
|
+
Set-Cookie:
|
1263
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1264
|
+
- server=prod-ws042.ec2|UmoWy; path=/
|
1265
|
+
Pragma:
|
1266
|
+
- no-cache
|
1267
|
+
Cache-Control:
|
1268
|
+
- no-store
|
1269
|
+
X-Server-Name:
|
1270
|
+
- prod-ws042.ec2
|
1271
|
+
X-Asana-Preferred-Release-Revision:
|
1272
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1273
|
+
X-Robots-Tag:
|
1274
|
+
- none
|
1275
|
+
Strict-Transport-Security:
|
1276
|
+
- max-age=31536000; includeSubDomains
|
1277
|
+
body:
|
1278
|
+
encoding: US-ASCII
|
1279
|
+
string: ! '{"data":{"id":8040754108534,"created_at":"2013-10-07T04:00:46.938Z","modified_at":"2013-10-07T04:16:42.522Z","name":"Check
|
1280
|
+
turbulence project","notes":"Code metrics: https://github.com/chad/turbulence","assignee":{"id":7239846033035,"name":"Adrian
|
1281
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124686,"name":"Someday/Maybe"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1282
|
+
Perez"}]}}'
|
1283
|
+
http_version:
|
1284
|
+
recorded_at: Fri, 25 Oct 2013 06:59:15 GMT
|
1285
|
+
- request:
|
1286
|
+
method: get
|
1287
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124725
|
1288
|
+
body:
|
1289
|
+
encoding: US-ASCII
|
1290
|
+
string: ''
|
1291
|
+
headers:
|
1292
|
+
Accept:
|
1293
|
+
- application/json
|
1294
|
+
Accept-Encoding:
|
1295
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1296
|
+
User-Agent:
|
1297
|
+
- Ruby
|
1298
|
+
response:
|
1299
|
+
status:
|
1300
|
+
code: 200
|
1301
|
+
message: OK
|
1302
|
+
headers:
|
1303
|
+
Server:
|
1304
|
+
- nginx/1.4.1
|
1305
|
+
Date:
|
1306
|
+
- Fri, 25 Oct 2013 06:59:18 GMT
|
1307
|
+
Content-Type:
|
1308
|
+
- application/json; charset=UTF-8
|
1309
|
+
Content-Length:
|
1310
|
+
- '452'
|
1311
|
+
Connection:
|
1312
|
+
- keep-alive
|
1313
|
+
X-Asana-Content-String-Length:
|
1314
|
+
- '452'
|
1315
|
+
Set-Cookie:
|
1316
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1317
|
+
- server=prod-ws052.ec2|UmoWy; path=/
|
1318
|
+
Pragma:
|
1319
|
+
- no-cache
|
1320
|
+
Cache-Control:
|
1321
|
+
- no-store
|
1322
|
+
X-Server-Name:
|
1323
|
+
- prod-ws052.ec2
|
1324
|
+
X-Asana-Preferred-Release-Revision:
|
1325
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1326
|
+
X-Robots-Tag:
|
1327
|
+
- none
|
1328
|
+
Strict-Transport-Security:
|
1329
|
+
- max-age=31536000; includeSubDomains
|
1330
|
+
body:
|
1331
|
+
encoding: US-ASCII
|
1332
|
+
string: ! '{"data":{"id":8039642124725,"created_at":"2013-10-07T03:56:08.469Z","modified_at":"2013-10-07T03:59:54.004Z","name":"Shoes","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1333
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1334
|
+
Perez"}]}}'
|
1335
|
+
http_version:
|
1336
|
+
recorded_at: Fri, 25 Oct 2013 06:59:15 GMT
|
1337
|
+
- request:
|
1338
|
+
method: get
|
1339
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124722
|
1340
|
+
body:
|
1341
|
+
encoding: US-ASCII
|
1342
|
+
string: ''
|
1343
|
+
headers:
|
1344
|
+
Accept:
|
1345
|
+
- application/json
|
1346
|
+
Accept-Encoding:
|
1347
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1348
|
+
User-Agent:
|
1349
|
+
- Ruby
|
1350
|
+
response:
|
1351
|
+
status:
|
1352
|
+
code: 200
|
1353
|
+
message: OK
|
1354
|
+
headers:
|
1355
|
+
Server:
|
1356
|
+
- nginx/1.4.1
|
1357
|
+
Date:
|
1358
|
+
- Fri, 25 Oct 2013 06:59:21 GMT
|
1359
|
+
Content-Type:
|
1360
|
+
- application/json; charset=UTF-8
|
1361
|
+
Content-Length:
|
1362
|
+
- '451'
|
1363
|
+
Connection:
|
1364
|
+
- keep-alive
|
1365
|
+
X-Asana-Content-String-Length:
|
1366
|
+
- '451'
|
1367
|
+
Set-Cookie:
|
1368
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1369
|
+
- server=prod-ws031.ec2|UmoWz; path=/
|
1370
|
+
Pragma:
|
1371
|
+
- no-cache
|
1372
|
+
Cache-Control:
|
1373
|
+
- no-store
|
1374
|
+
X-Server-Name:
|
1375
|
+
- prod-ws031.ec2
|
1376
|
+
X-Asana-Preferred-Release-Revision:
|
1377
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1378
|
+
X-Robots-Tag:
|
1379
|
+
- none
|
1380
|
+
Strict-Transport-Security:
|
1381
|
+
- max-age=31536000; includeSubDomains
|
1382
|
+
body:
|
1383
|
+
encoding: US-ASCII
|
1384
|
+
string: ! '{"data":{"id":8039642124722,"created_at":"2013-10-07T03:55:50.823Z","modified_at":"2013-10-07T03:59:54.004Z","name":"Jean","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1385
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1386
|
+
Perez"}]}}'
|
1387
|
+
http_version:
|
1388
|
+
recorded_at: Fri, 25 Oct 2013 06:59:18 GMT
|
1389
|
+
- request:
|
1390
|
+
method: get
|
1391
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124720
|
1392
|
+
body:
|
1393
|
+
encoding: US-ASCII
|
1394
|
+
string: ''
|
1395
|
+
headers:
|
1396
|
+
Accept:
|
1397
|
+
- application/json
|
1398
|
+
Accept-Encoding:
|
1399
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1400
|
+
User-Agent:
|
1401
|
+
- Ruby
|
1402
|
+
response:
|
1403
|
+
status:
|
1404
|
+
code: 200
|
1405
|
+
message: OK
|
1406
|
+
headers:
|
1407
|
+
Server:
|
1408
|
+
- nginx/1.4.1
|
1409
|
+
Date:
|
1410
|
+
- Fri, 25 Oct 2013 06:59:22 GMT
|
1411
|
+
Content-Type:
|
1412
|
+
- application/json; charset=UTF-8
|
1413
|
+
Content-Length:
|
1414
|
+
- '455'
|
1415
|
+
Connection:
|
1416
|
+
- keep-alive
|
1417
|
+
X-Asana-Content-String-Length:
|
1418
|
+
- '455'
|
1419
|
+
Set-Cookie:
|
1420
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1421
|
+
- server=prod-ws008.ec2|UmoWz; path=/
|
1422
|
+
Pragma:
|
1423
|
+
- no-cache
|
1424
|
+
Cache-Control:
|
1425
|
+
- no-store
|
1426
|
+
X-Server-Name:
|
1427
|
+
- prod-ws008.ec2
|
1428
|
+
X-Asana-Preferred-Release-Revision:
|
1429
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1430
|
+
X-Robots-Tag:
|
1431
|
+
- none
|
1432
|
+
Strict-Transport-Security:
|
1433
|
+
- max-age=31536000; includeSubDomains
|
1434
|
+
body:
|
1435
|
+
encoding: US-ASCII
|
1436
|
+
string: ! '{"data":{"id":8039642124720,"created_at":"2013-10-07T03:55:39.719Z","modified_at":"2013-10-07T05:13:17.073Z","name":"T-Shirts","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1437
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1438
|
+
Perez"}]}}'
|
1439
|
+
http_version:
|
1440
|
+
recorded_at: Fri, 25 Oct 2013 06:59:19 GMT
|
1441
|
+
- request:
|
1442
|
+
method: get
|
1443
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124718
|
1444
|
+
body:
|
1445
|
+
encoding: US-ASCII
|
1446
|
+
string: ''
|
1447
|
+
headers:
|
1448
|
+
Accept:
|
1449
|
+
- application/json
|
1450
|
+
Accept-Encoding:
|
1451
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1452
|
+
User-Agent:
|
1453
|
+
- Ruby
|
1454
|
+
response:
|
1455
|
+
status:
|
1456
|
+
code: 200
|
1457
|
+
message: OK
|
1458
|
+
headers:
|
1459
|
+
Server:
|
1460
|
+
- nginx/1.4.1
|
1461
|
+
Date:
|
1462
|
+
- Fri, 25 Oct 2013 06:59:22 GMT
|
1463
|
+
Content-Type:
|
1464
|
+
- application/json; charset=UTF-8
|
1465
|
+
Content-Length:
|
1466
|
+
- '578'
|
1467
|
+
Connection:
|
1468
|
+
- keep-alive
|
1469
|
+
X-Asana-Content-String-Length:
|
1470
|
+
- '578'
|
1471
|
+
Set-Cookie:
|
1472
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1473
|
+
- server=prod-ws033.ec2|UmoWz; path=/
|
1474
|
+
Pragma:
|
1475
|
+
- no-cache
|
1476
|
+
Cache-Control:
|
1477
|
+
- no-store
|
1478
|
+
X-Server-Name:
|
1479
|
+
- prod-ws033.ec2
|
1480
|
+
X-Asana-Preferred-Release-Revision:
|
1481
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1482
|
+
X-Robots-Tag:
|
1483
|
+
- none
|
1484
|
+
Strict-Transport-Security:
|
1485
|
+
- max-age=31536000; includeSubDomains
|
1486
|
+
body:
|
1487
|
+
encoding: US-ASCII
|
1488
|
+
string: ! '{"data":{"id":8039642124718,"created_at":"2013-10-07T03:55:23.928Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Fix
|
1489
|
+
Writebar multi-filtering","notes":"evernote:///view/5675974/s53/0acef429-00a5-437f-984e-bc45d5bc3158/0acef429-00a5-437f-984e-bc45d5bc3158/","assignee":{"id":7239846033035,"name":"Adrian
|
1490
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1491
|
+
Perez"}]}}'
|
1492
|
+
http_version:
|
1493
|
+
recorded_at: Fri, 25 Oct 2013 06:59:20 GMT
|
1494
|
+
- request:
|
1495
|
+
method: get
|
1496
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124716
|
1497
|
+
body:
|
1498
|
+
encoding: US-ASCII
|
1499
|
+
string: ''
|
1500
|
+
headers:
|
1501
|
+
Accept:
|
1502
|
+
- application/json
|
1503
|
+
Accept-Encoding:
|
1504
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1505
|
+
User-Agent:
|
1506
|
+
- Ruby
|
1507
|
+
response:
|
1508
|
+
status:
|
1509
|
+
code: 200
|
1510
|
+
message: OK
|
1511
|
+
headers:
|
1512
|
+
Server:
|
1513
|
+
- nginx/1.4.1
|
1514
|
+
Date:
|
1515
|
+
- Fri, 25 Oct 2013 06:59:23 GMT
|
1516
|
+
Content-Type:
|
1517
|
+
- application/json; charset=UTF-8
|
1518
|
+
Content-Length:
|
1519
|
+
- '589'
|
1520
|
+
Connection:
|
1521
|
+
- keep-alive
|
1522
|
+
X-Asana-Content-String-Length:
|
1523
|
+
- '589'
|
1524
|
+
Set-Cookie:
|
1525
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1526
|
+
- server=prod-ws055.ec2|UmoWz; path=/
|
1527
|
+
Pragma:
|
1528
|
+
- no-cache
|
1529
|
+
Cache-Control:
|
1530
|
+
- no-store
|
1531
|
+
X-Server-Name:
|
1532
|
+
- ip-10-143-151-236
|
1533
|
+
X-Asana-Preferred-Release-Revision:
|
1534
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1535
|
+
X-Robots-Tag:
|
1536
|
+
- none
|
1537
|
+
Strict-Transport-Security:
|
1538
|
+
- max-age=31536000; includeSubDomains
|
1539
|
+
body:
|
1540
|
+
encoding: US-ASCII
|
1541
|
+
string: ! '{"data":{"id":8039642124716,"created_at":"2013-10-07T03:54:44.959Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Fix
|
1542
|
+
Writebar focus and scrolling issues","notes":"evernote:///view/5675974/s53/831350a0-4272-46ec-8a59-4bedc812e462/831350a0-4272-46ec-8a59-4bedc812e462/","assignee":{"id":7239846033035,"name":"Adrian
|
1543
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1544
|
+
Perez"}]}}'
|
1545
|
+
http_version:
|
1546
|
+
recorded_at: Fri, 25 Oct 2013 06:59:21 GMT
|
1547
|
+
- request:
|
1548
|
+
method: get
|
1549
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124714
|
1550
|
+
body:
|
1551
|
+
encoding: US-ASCII
|
1552
|
+
string: ''
|
1553
|
+
headers:
|
1554
|
+
Accept:
|
1555
|
+
- application/json
|
1556
|
+
Accept-Encoding:
|
1557
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1558
|
+
User-Agent:
|
1559
|
+
- Ruby
|
1560
|
+
response:
|
1561
|
+
status:
|
1562
|
+
code: 200
|
1563
|
+
message: OK
|
1564
|
+
headers:
|
1565
|
+
Server:
|
1566
|
+
- nginx/1.4.1
|
1567
|
+
Date:
|
1568
|
+
- Fri, 25 Oct 2013 06:59:26 GMT
|
1569
|
+
Content-Type:
|
1570
|
+
- application/json; charset=UTF-8
|
1571
|
+
Content-Length:
|
1572
|
+
- '570'
|
1573
|
+
Connection:
|
1574
|
+
- keep-alive
|
1575
|
+
X-Asana-Content-String-Length:
|
1576
|
+
- '570'
|
1577
|
+
Set-Cookie:
|
1578
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1579
|
+
- server=prod-ws002.ec2|UmoW0; path=/
|
1580
|
+
Pragma:
|
1581
|
+
- no-cache
|
1582
|
+
Cache-Control:
|
1583
|
+
- no-store
|
1584
|
+
X-Server-Name:
|
1585
|
+
- prod-ws002.ec2
|
1586
|
+
X-Asana-Preferred-Release-Revision:
|
1587
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1588
|
+
X-Robots-Tag:
|
1589
|
+
- none
|
1590
|
+
Strict-Transport-Security:
|
1591
|
+
- max-age=31536000; includeSubDomains
|
1592
|
+
body:
|
1593
|
+
encoding: US-ASCII
|
1594
|
+
string: ! '{"data":{"id":8039642124714,"created_at":"2013-10-07T03:53:46.841Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Modify
|
1595
|
+
streams views","notes":"evernote:///view/5675974/s53/2cb38832-b0a5-44d5-8a0c-52bef36f229a/2cb38832-b0a5-44d5-8a0c-52bef36f229a/","assignee":{"id":7239846033035,"name":"Adrian
|
1596
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1597
|
+
Perez"}]}}'
|
1598
|
+
http_version:
|
1599
|
+
recorded_at: Fri, 25 Oct 2013 06:59:24 GMT
|
1600
|
+
- request:
|
1601
|
+
method: get
|
1602
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124712
|
1603
|
+
body:
|
1604
|
+
encoding: US-ASCII
|
1605
|
+
string: ''
|
1606
|
+
headers:
|
1607
|
+
Accept:
|
1608
|
+
- application/json
|
1609
|
+
Accept-Encoding:
|
1610
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1611
|
+
User-Agent:
|
1612
|
+
- Ruby
|
1613
|
+
response:
|
1614
|
+
status:
|
1615
|
+
code: 200
|
1616
|
+
message: OK
|
1617
|
+
headers:
|
1618
|
+
Server:
|
1619
|
+
- nginx/1.4.1
|
1620
|
+
Date:
|
1621
|
+
- Fri, 25 Oct 2013 06:59:27 GMT
|
1622
|
+
Content-Type:
|
1623
|
+
- application/json; charset=UTF-8
|
1624
|
+
Content-Length:
|
1625
|
+
- '462'
|
1626
|
+
Connection:
|
1627
|
+
- keep-alive
|
1628
|
+
X-Asana-Content-String-Length:
|
1629
|
+
- '462'
|
1630
|
+
Set-Cookie:
|
1631
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1632
|
+
- server=prod-ws031.ec2|UmoW0; path=/
|
1633
|
+
Pragma:
|
1634
|
+
- no-cache
|
1635
|
+
Cache-Control:
|
1636
|
+
- no-store
|
1637
|
+
X-Server-Name:
|
1638
|
+
- prod-ws031.ec2
|
1639
|
+
X-Asana-Preferred-Release-Revision:
|
1640
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1641
|
+
X-Robots-Tag:
|
1642
|
+
- none
|
1643
|
+
Strict-Transport-Security:
|
1644
|
+
- max-age=31536000; includeSubDomains
|
1645
|
+
body:
|
1646
|
+
encoding: US-ASCII
|
1647
|
+
string: ! '{"data":{"id":8039642124712,"created_at":"2013-10-07T03:53:37.186Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Add
|
1648
|
+
task states","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1649
|
+
Perez"}]}}'
|
1650
|
+
http_version:
|
1651
|
+
recorded_at: Fri, 25 Oct 2013 06:59:24 GMT
|
1652
|
+
- request:
|
1653
|
+
method: get
|
1654
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124710
|
1655
|
+
body:
|
1656
|
+
encoding: US-ASCII
|
1657
|
+
string: ''
|
1658
|
+
headers:
|
1659
|
+
Accept:
|
1660
|
+
- application/json
|
1661
|
+
Accept-Encoding:
|
1662
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1663
|
+
User-Agent:
|
1664
|
+
- Ruby
|
1665
|
+
response:
|
1666
|
+
status:
|
1667
|
+
code: 200
|
1668
|
+
message: OK
|
1669
|
+
headers:
|
1670
|
+
Server:
|
1671
|
+
- nginx/1.4.1
|
1672
|
+
Date:
|
1673
|
+
- Fri, 25 Oct 2013 06:59:28 GMT
|
1674
|
+
Content-Type:
|
1675
|
+
- application/json; charset=UTF-8
|
1676
|
+
Content-Length:
|
1677
|
+
- '484'
|
1678
|
+
Connection:
|
1679
|
+
- keep-alive
|
1680
|
+
X-Asana-Content-String-Length:
|
1681
|
+
- '484'
|
1682
|
+
Set-Cookie:
|
1683
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1684
|
+
- server=prod-ws054.ec2|UmoW0; path=/
|
1685
|
+
Pragma:
|
1686
|
+
- no-cache
|
1687
|
+
Cache-Control:
|
1688
|
+
- no-store
|
1689
|
+
X-Server-Name:
|
1690
|
+
- ip-10-151-109-42
|
1691
|
+
X-Asana-Preferred-Release-Revision:
|
1692
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1693
|
+
X-Robots-Tag:
|
1694
|
+
- none
|
1695
|
+
Strict-Transport-Security:
|
1696
|
+
- max-age=31536000; includeSubDomains
|
1697
|
+
body:
|
1698
|
+
encoding: US-ASCII
|
1699
|
+
string: ! '{"data":{"id":8039642124710,"created_at":"2013-10-07T03:53:24.724Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Integrate
|
1700
|
+
Diana''s landing page design","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1701
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1702
|
+
Perez"}]}}'
|
1703
|
+
http_version:
|
1704
|
+
recorded_at: Fri, 25 Oct 2013 06:59:25 GMT
|
1705
|
+
- request:
|
1706
|
+
method: get
|
1707
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124708
|
1708
|
+
body:
|
1709
|
+
encoding: US-ASCII
|
1710
|
+
string: ''
|
1711
|
+
headers:
|
1712
|
+
Accept:
|
1713
|
+
- application/json
|
1714
|
+
Accept-Encoding:
|
1715
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1716
|
+
User-Agent:
|
1717
|
+
- Ruby
|
1718
|
+
response:
|
1719
|
+
status:
|
1720
|
+
code: 200
|
1721
|
+
message: OK
|
1722
|
+
headers:
|
1723
|
+
Server:
|
1724
|
+
- nginx/1.4.1
|
1725
|
+
Date:
|
1726
|
+
- Fri, 25 Oct 2013 06:59:28 GMT
|
1727
|
+
Content-Type:
|
1728
|
+
- application/json; charset=UTF-8
|
1729
|
+
Content-Length:
|
1730
|
+
- '484'
|
1731
|
+
Connection:
|
1732
|
+
- keep-alive
|
1733
|
+
X-Asana-Content-String-Length:
|
1734
|
+
- '484'
|
1735
|
+
Set-Cookie:
|
1736
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1737
|
+
- server=prod-ws051.ec2|UmoW0; path=/
|
1738
|
+
Pragma:
|
1739
|
+
- no-cache
|
1740
|
+
Cache-Control:
|
1741
|
+
- no-store
|
1742
|
+
X-Server-Name:
|
1743
|
+
- prod-ws051.ec2
|
1744
|
+
X-Asana-Preferred-Release-Revision:
|
1745
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1746
|
+
X-Robots-Tag:
|
1747
|
+
- none
|
1748
|
+
Strict-Transport-Security:
|
1749
|
+
- max-age=31536000; includeSubDomains
|
1750
|
+
body:
|
1751
|
+
encoding: US-ASCII
|
1752
|
+
string: ! '{"data":{"id":8039642124708,"created_at":"2013-10-07T03:52:45.006Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Improve
|
1753
|
+
design for notification mails","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1754
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1755
|
+
Perez"}]}}'
|
1756
|
+
http_version:
|
1757
|
+
recorded_at: Fri, 25 Oct 2013 06:59:26 GMT
|
1758
|
+
- request:
|
1759
|
+
method: get
|
1760
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124706
|
1761
|
+
body:
|
1762
|
+
encoding: US-ASCII
|
1763
|
+
string: ''
|
1764
|
+
headers:
|
1765
|
+
Accept:
|
1766
|
+
- application/json
|
1767
|
+
Accept-Encoding:
|
1768
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1769
|
+
User-Agent:
|
1770
|
+
- Ruby
|
1771
|
+
response:
|
1772
|
+
status:
|
1773
|
+
code: 200
|
1774
|
+
message: OK
|
1775
|
+
headers:
|
1776
|
+
Server:
|
1777
|
+
- nginx/1.4.1
|
1778
|
+
Date:
|
1779
|
+
- Fri, 25 Oct 2013 06:59:29 GMT
|
1780
|
+
Content-Type:
|
1781
|
+
- application/json; charset=UTF-8
|
1782
|
+
Content-Length:
|
1783
|
+
- '478'
|
1784
|
+
Connection:
|
1785
|
+
- keep-alive
|
1786
|
+
X-Asana-Content-String-Length:
|
1787
|
+
- '478'
|
1788
|
+
Set-Cookie:
|
1789
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1790
|
+
- server=prod-ws007.ec2|UmoW1; path=/
|
1791
|
+
Pragma:
|
1792
|
+
- no-cache
|
1793
|
+
Cache-Control:
|
1794
|
+
- no-store
|
1795
|
+
X-Server-Name:
|
1796
|
+
- prod-ws007.ec2
|
1797
|
+
X-Asana-Preferred-Release-Revision:
|
1798
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1799
|
+
X-Robots-Tag:
|
1800
|
+
- none
|
1801
|
+
Strict-Transport-Security:
|
1802
|
+
- max-age=31536000; includeSubDomains
|
1803
|
+
body:
|
1804
|
+
encoding: US-ASCII
|
1805
|
+
string: ! '{"data":{"id":8039642124706,"created_at":"2013-10-07T03:52:25.988Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Watch
|
1806
|
+
RejectJS conference videos","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1807
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
1808
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1809
|
+
Perez"}]}}'
|
1810
|
+
http_version:
|
1811
|
+
recorded_at: Fri, 25 Oct 2013 06:59:27 GMT
|
1812
|
+
- request:
|
1813
|
+
method: get
|
1814
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124704
|
1815
|
+
body:
|
1816
|
+
encoding: US-ASCII
|
1817
|
+
string: ''
|
1818
|
+
headers:
|
1819
|
+
Accept:
|
1820
|
+
- application/json
|
1821
|
+
Accept-Encoding:
|
1822
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1823
|
+
User-Agent:
|
1824
|
+
- Ruby
|
1825
|
+
response:
|
1826
|
+
status:
|
1827
|
+
code: 200
|
1828
|
+
message: OK
|
1829
|
+
headers:
|
1830
|
+
Server:
|
1831
|
+
- nginx/1.4.1
|
1832
|
+
Date:
|
1833
|
+
- Fri, 25 Oct 2013 06:59:32 GMT
|
1834
|
+
Content-Type:
|
1835
|
+
- application/json; charset=UTF-8
|
1836
|
+
Content-Length:
|
1837
|
+
- '469'
|
1838
|
+
Connection:
|
1839
|
+
- keep-alive
|
1840
|
+
X-Asana-Content-String-Length:
|
1841
|
+
- '469'
|
1842
|
+
Set-Cookie:
|
1843
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1844
|
+
- server=prod-ws033.ec2|UmoW1; path=/
|
1845
|
+
Pragma:
|
1846
|
+
- no-cache
|
1847
|
+
Cache-Control:
|
1848
|
+
- no-store
|
1849
|
+
X-Server-Name:
|
1850
|
+
- prod-ws033.ec2
|
1851
|
+
X-Asana-Preferred-Release-Revision:
|
1852
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1853
|
+
X-Robots-Tag:
|
1854
|
+
- none
|
1855
|
+
Strict-Transport-Security:
|
1856
|
+
- max-age=31536000; includeSubDomains
|
1857
|
+
body:
|
1858
|
+
encoding: US-ASCII
|
1859
|
+
string: ! '{"data":{"id":8039642124704,"created_at":"2013-10-07T03:51:52.286Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Re-enable
|
1860
|
+
MongoDB auth","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1861
|
+
Perez"}]}}'
|
1862
|
+
http_version:
|
1863
|
+
recorded_at: Fri, 25 Oct 2013 06:59:30 GMT
|
1864
|
+
- request:
|
1865
|
+
method: get
|
1866
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124702
|
1867
|
+
body:
|
1868
|
+
encoding: US-ASCII
|
1869
|
+
string: ''
|
1870
|
+
headers:
|
1871
|
+
Accept:
|
1872
|
+
- application/json
|
1873
|
+
Accept-Encoding:
|
1874
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1875
|
+
User-Agent:
|
1876
|
+
- Ruby
|
1877
|
+
response:
|
1878
|
+
status:
|
1879
|
+
code: 200
|
1880
|
+
message: OK
|
1881
|
+
headers:
|
1882
|
+
Server:
|
1883
|
+
- nginx/1.4.1
|
1884
|
+
Date:
|
1885
|
+
- Fri, 25 Oct 2013 06:59:33 GMT
|
1886
|
+
Content-Type:
|
1887
|
+
- application/json; charset=UTF-8
|
1888
|
+
Content-Length:
|
1889
|
+
- '471'
|
1890
|
+
Connection:
|
1891
|
+
- keep-alive
|
1892
|
+
X-Asana-Content-String-Length:
|
1893
|
+
- '471'
|
1894
|
+
Set-Cookie:
|
1895
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1896
|
+
- server=prod-ws005.ec2|UmoW2; path=/
|
1897
|
+
Pragma:
|
1898
|
+
- no-cache
|
1899
|
+
Cache-Control:
|
1900
|
+
- no-store
|
1901
|
+
X-Server-Name:
|
1902
|
+
- prod-ws005.ec2
|
1903
|
+
X-Asana-Preferred-Release-Revision:
|
1904
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1905
|
+
X-Robots-Tag:
|
1906
|
+
- none
|
1907
|
+
Strict-Transport-Security:
|
1908
|
+
- max-age=31536000; includeSubDomains
|
1909
|
+
body:
|
1910
|
+
encoding: US-ASCII
|
1911
|
+
string: ! '{"data":{"id":8039642124702,"created_at":"2013-10-07T03:51:30.384Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Purge
|
1912
|
+
account connections","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1913
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
1914
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1915
|
+
Perez"}]}}'
|
1916
|
+
http_version:
|
1917
|
+
recorded_at: Fri, 25 Oct 2013 06:59:31 GMT
|
1918
|
+
- request:
|
1919
|
+
method: get
|
1920
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124699
|
1921
|
+
body:
|
1922
|
+
encoding: US-ASCII
|
1923
|
+
string: ''
|
1924
|
+
headers:
|
1925
|
+
Accept:
|
1926
|
+
- application/json
|
1927
|
+
Accept-Encoding:
|
1928
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1929
|
+
User-Agent:
|
1930
|
+
- Ruby
|
1931
|
+
response:
|
1932
|
+
status:
|
1933
|
+
code: 200
|
1934
|
+
message: OK
|
1935
|
+
headers:
|
1936
|
+
Server:
|
1937
|
+
- nginx/1.4.1
|
1938
|
+
Date:
|
1939
|
+
- Fri, 25 Oct 2013 06:59:34 GMT
|
1940
|
+
Content-Type:
|
1941
|
+
- application/json; charset=UTF-8
|
1942
|
+
Content-Length:
|
1943
|
+
- '476'
|
1944
|
+
Connection:
|
1945
|
+
- keep-alive
|
1946
|
+
X-Asana-Content-String-Length:
|
1947
|
+
- '476'
|
1948
|
+
Set-Cookie:
|
1949
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
1950
|
+
- server=prod-ws045.ec2|UmoW2; path=/
|
1951
|
+
Pragma:
|
1952
|
+
- no-cache
|
1953
|
+
Cache-Control:
|
1954
|
+
- no-store
|
1955
|
+
X-Server-Name:
|
1956
|
+
- prod-ws045.ec2
|
1957
|
+
X-Asana-Preferred-Release-Revision:
|
1958
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
1959
|
+
X-Robots-Tag:
|
1960
|
+
- none
|
1961
|
+
Strict-Transport-Security:
|
1962
|
+
- max-age=31536000; includeSubDomains
|
1963
|
+
body:
|
1964
|
+
encoding: US-ASCII
|
1965
|
+
string: ! '{"data":{"id":8039642124699,"created_at":"2013-10-07T03:50:51.498Z","modified_at":"2013-10-07T03:57:18.596Z","name":"Add
|
1966
|
+
backend for task sections","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
1967
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
1968
|
+
Perez"}]}}'
|
1969
|
+
http_version:
|
1970
|
+
recorded_at: Fri, 25 Oct 2013 06:59:31 GMT
|
1971
|
+
- request:
|
1972
|
+
method: get
|
1973
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124698
|
1974
|
+
body:
|
1975
|
+
encoding: US-ASCII
|
1976
|
+
string: ''
|
1977
|
+
headers:
|
1978
|
+
Accept:
|
1979
|
+
- application/json
|
1980
|
+
Accept-Encoding:
|
1981
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1982
|
+
User-Agent:
|
1983
|
+
- Ruby
|
1984
|
+
response:
|
1985
|
+
status:
|
1986
|
+
code: 200
|
1987
|
+
message: OK
|
1988
|
+
headers:
|
1989
|
+
Server:
|
1990
|
+
- nginx/1.4.1
|
1991
|
+
Date:
|
1992
|
+
- Fri, 25 Oct 2013 06:59:37 GMT
|
1993
|
+
Content-Type:
|
1994
|
+
- application/json; charset=UTF-8
|
1995
|
+
Content-Length:
|
1996
|
+
- '444'
|
1997
|
+
Connection:
|
1998
|
+
- keep-alive
|
1999
|
+
X-Asana-Content-String-Length:
|
2000
|
+
- '444'
|
2001
|
+
Set-Cookie:
|
2002
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2003
|
+
- server=prod-ws008.ec2|UmoW3; path=/
|
2004
|
+
Pragma:
|
2005
|
+
- no-cache
|
2006
|
+
Cache-Control:
|
2007
|
+
- no-store
|
2008
|
+
X-Server-Name:
|
2009
|
+
- prod-ws008.ec2
|
2010
|
+
X-Asana-Preferred-Release-Revision:
|
2011
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2012
|
+
X-Robots-Tag:
|
2013
|
+
- none
|
2014
|
+
Strict-Transport-Security:
|
2015
|
+
- max-age=31536000; includeSubDomains
|
2016
|
+
body:
|
2017
|
+
encoding: US-ASCII
|
2018
|
+
string: ! '{"data":{"id":8039642124698,"created_at":"2013-10-07T03:50:48.243Z","modified_at":"2013-10-07T05:09:02.760Z","name":"Update
|
2019
|
+
vagrant","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-07T05:09:03.948Z","due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2020
|
+
Perez"}]}}'
|
2021
|
+
http_version:
|
2022
|
+
recorded_at: Fri, 25 Oct 2013 06:59:34 GMT
|
2023
|
+
- request:
|
2024
|
+
method: get
|
2025
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108549
|
2026
|
+
body:
|
2027
|
+
encoding: US-ASCII
|
2028
|
+
string: ''
|
2029
|
+
headers:
|
2030
|
+
Accept:
|
2031
|
+
- application/json
|
2032
|
+
Accept-Encoding:
|
2033
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2034
|
+
User-Agent:
|
2035
|
+
- Ruby
|
2036
|
+
response:
|
2037
|
+
status:
|
2038
|
+
code: 200
|
2039
|
+
message: OK
|
2040
|
+
headers:
|
2041
|
+
Server:
|
2042
|
+
- nginx/1.4.1
|
2043
|
+
Date:
|
2044
|
+
- Fri, 25 Oct 2013 06:59:37 GMT
|
2045
|
+
Content-Type:
|
2046
|
+
- application/json; charset=UTF-8
|
2047
|
+
Content-Length:
|
2048
|
+
- '469'
|
2049
|
+
Connection:
|
2050
|
+
- keep-alive
|
2051
|
+
X-Asana-Content-String-Length:
|
2052
|
+
- '469'
|
2053
|
+
Set-Cookie:
|
2054
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2055
|
+
- server=prod-ws048.ec2|UmoW3; path=/
|
2056
|
+
Pragma:
|
2057
|
+
- no-cache
|
2058
|
+
Cache-Control:
|
2059
|
+
- no-store
|
2060
|
+
X-Server-Name:
|
2061
|
+
- prod-ws048.ec2
|
2062
|
+
X-Asana-Preferred-Release-Revision:
|
2063
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2064
|
+
X-Robots-Tag:
|
2065
|
+
- none
|
2066
|
+
Strict-Transport-Security:
|
2067
|
+
- max-age=31536000; includeSubDomains
|
2068
|
+
body:
|
2069
|
+
encoding: US-ASCII
|
2070
|
+
string: ! '{"data":{"id":8040754108549,"created_at":"2013-10-07T04:03:47.649Z","modified_at":"2013-10-07T04:09:22.173Z","name":"Check
|
2071
|
+
the Drafts app","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"upcoming","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
2072
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2073
|
+
Perez"}]}}'
|
2074
|
+
http_version:
|
2075
|
+
recorded_at: Fri, 25 Oct 2013 06:59:35 GMT
|
2076
|
+
- request:
|
2077
|
+
method: get
|
2078
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108584
|
2079
|
+
body:
|
2080
|
+
encoding: US-ASCII
|
2081
|
+
string: ''
|
2082
|
+
headers:
|
2083
|
+
Accept:
|
2084
|
+
- application/json
|
2085
|
+
Accept-Encoding:
|
2086
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2087
|
+
User-Agent:
|
2088
|
+
- Ruby
|
2089
|
+
response:
|
2090
|
+
status:
|
2091
|
+
code: 200
|
2092
|
+
message: OK
|
2093
|
+
headers:
|
2094
|
+
Server:
|
2095
|
+
- nginx/1.4.1
|
2096
|
+
Date:
|
2097
|
+
- Fri, 25 Oct 2013 06:59:38 GMT
|
2098
|
+
Content-Type:
|
2099
|
+
- application/json; charset=UTF-8
|
2100
|
+
Content-Length:
|
2101
|
+
- '567'
|
2102
|
+
Connection:
|
2103
|
+
- keep-alive
|
2104
|
+
X-Asana-Content-String-Length:
|
2105
|
+
- '567'
|
2106
|
+
Set-Cookie:
|
2107
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2108
|
+
- server=prod-ws008.ec2|UmoW3; path=/
|
2109
|
+
Pragma:
|
2110
|
+
- no-cache
|
2111
|
+
Cache-Control:
|
2112
|
+
- no-store
|
2113
|
+
X-Server-Name:
|
2114
|
+
- prod-ws008.ec2
|
2115
|
+
X-Asana-Preferred-Release-Revision:
|
2116
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2117
|
+
X-Robots-Tag:
|
2118
|
+
- none
|
2119
|
+
Strict-Transport-Security:
|
2120
|
+
- max-age=31536000; includeSubDomains
|
2121
|
+
body:
|
2122
|
+
encoding: US-ASCII
|
2123
|
+
string: ! '{"data":{"id":8040754108584,"created_at":"2013-10-07T04:08:50.326Z","modified_at":"2013-10-11T04:13:19.129Z","name":"Add
|
2124
|
+
to celebs note","notes":"evernote:///view/5675974/s53/182bd743-127e-4bdf-b975-ded45e469647/182bd743-127e-4bdf-b975-ded45e469647/","assignee":{"id":7239846033035,"name":"Adrian
|
2125
|
+
Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124666,"name":"At
|
2126
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2127
|
+
Perez"}]}}'
|
2128
|
+
http_version:
|
2129
|
+
recorded_at: Fri, 25 Oct 2013 06:59:36 GMT
|
2130
|
+
- request:
|
2131
|
+
method: get
|
2132
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8045769322086
|
2133
|
+
body:
|
2134
|
+
encoding: US-ASCII
|
2135
|
+
string: ''
|
2136
|
+
headers:
|
2137
|
+
Accept:
|
2138
|
+
- application/json
|
2139
|
+
Accept-Encoding:
|
2140
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2141
|
+
User-Agent:
|
2142
|
+
- Ruby
|
2143
|
+
response:
|
2144
|
+
status:
|
2145
|
+
code: 200
|
2146
|
+
message: OK
|
2147
|
+
headers:
|
2148
|
+
Server:
|
2149
|
+
- nginx/1.4.1
|
2150
|
+
Date:
|
2151
|
+
- Fri, 25 Oct 2013 06:59:39 GMT
|
2152
|
+
Content-Type:
|
2153
|
+
- application/json; charset=UTF-8
|
2154
|
+
Content-Length:
|
2155
|
+
- '484'
|
2156
|
+
Connection:
|
2157
|
+
- keep-alive
|
2158
|
+
X-Asana-Content-String-Length:
|
2159
|
+
- '484'
|
2160
|
+
Set-Cookie:
|
2161
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2162
|
+
- server=prod-ws042.ec2|UmoW3; path=/
|
2163
|
+
Pragma:
|
2164
|
+
- no-cache
|
2165
|
+
Cache-Control:
|
2166
|
+
- no-store
|
2167
|
+
X-Server-Name:
|
2168
|
+
- prod-ws042.ec2
|
2169
|
+
X-Asana-Preferred-Release-Revision:
|
2170
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2171
|
+
X-Robots-Tag:
|
2172
|
+
- none
|
2173
|
+
Strict-Transport-Security:
|
2174
|
+
- max-age=31536000; includeSubDomains
|
2175
|
+
body:
|
2176
|
+
encoding: US-ASCII
|
2177
|
+
string: ! '{"data":{"id":8045769322086,"created_at":"2013-10-07T12:36:42.956Z","modified_at":"2013-10-07T12:36:59.755Z","name":"Update
|
2178
|
+
to Ruby 2","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"later","completed_at":"2013-10-07T12:36:58.766Z","due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2179
|
+
Perez"}]}}'
|
2180
|
+
http_version:
|
2181
|
+
recorded_at: Fri, 25 Oct 2013 06:59:37 GMT
|
2182
|
+
- request:
|
2183
|
+
method: get
|
2184
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8045769322089
|
2185
|
+
body:
|
2186
|
+
encoding: US-ASCII
|
2187
|
+
string: ''
|
2188
|
+
headers:
|
2189
|
+
Accept:
|
2190
|
+
- application/json
|
2191
|
+
Accept-Encoding:
|
2192
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2193
|
+
User-Agent:
|
2194
|
+
- Ruby
|
2195
|
+
response:
|
2196
|
+
status:
|
2197
|
+
code: 200
|
2198
|
+
message: OK
|
2199
|
+
headers:
|
2200
|
+
Server:
|
2201
|
+
- nginx/1.4.1
|
2202
|
+
Date:
|
2203
|
+
- Fri, 25 Oct 2013 06:59:40 GMT
|
2204
|
+
Content-Type:
|
2205
|
+
- application/json; charset=UTF-8
|
2206
|
+
Content-Length:
|
2207
|
+
- '465'
|
2208
|
+
Connection:
|
2209
|
+
- keep-alive
|
2210
|
+
X-Asana-Content-String-Length:
|
2211
|
+
- '465'
|
2212
|
+
Set-Cookie:
|
2213
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2214
|
+
- server=prod-ws038.ec2|UmoW3; path=/
|
2215
|
+
Pragma:
|
2216
|
+
- no-cache
|
2217
|
+
Cache-Control:
|
2218
|
+
- no-store
|
2219
|
+
X-Server-Name:
|
2220
|
+
- prod-ws038.ec2
|
2221
|
+
X-Asana-Preferred-Release-Revision:
|
2222
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2223
|
+
X-Robots-Tag:
|
2224
|
+
- none
|
2225
|
+
Strict-Transport-Security:
|
2226
|
+
- max-age=31536000; includeSubDomains
|
2227
|
+
body:
|
2228
|
+
encoding: US-ASCII
|
2229
|
+
string: ! '{"data":{"id":8045769322089,"created_at":"2013-10-07T12:37:04.088Z","modified_at":"2013-10-07T12:37:09.837Z","name":"Upgrade
|
2230
|
+
to Rails 4","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":false,"assignee_status":"later","completed_at":null,"due_on":null,"projects":[{"id":8039642124656,"name":"Skindler"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2231
|
+
Perez"}]}}'
|
2232
|
+
http_version:
|
2233
|
+
recorded_at: Fri, 25 Oct 2013 06:59:37 GMT
|
2234
|
+
- request:
|
2235
|
+
method: get
|
2236
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039428979858
|
2237
|
+
body:
|
2238
|
+
encoding: US-ASCII
|
2239
|
+
string: ''
|
2240
|
+
headers:
|
2241
|
+
Accept:
|
2242
|
+
- application/json
|
2243
|
+
Accept-Encoding:
|
2244
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2245
|
+
User-Agent:
|
2246
|
+
- Ruby
|
2247
|
+
response:
|
2248
|
+
status:
|
2249
|
+
code: 200
|
2250
|
+
message: OK
|
2251
|
+
headers:
|
2252
|
+
Server:
|
2253
|
+
- nginx/1.4.1
|
2254
|
+
Date:
|
2255
|
+
- Fri, 25 Oct 2013 06:59:41 GMT
|
2256
|
+
Content-Type:
|
2257
|
+
- application/json; charset=UTF-8
|
2258
|
+
Content-Length:
|
2259
|
+
- '451'
|
2260
|
+
Connection:
|
2261
|
+
- keep-alive
|
2262
|
+
X-Asana-Content-String-Length:
|
2263
|
+
- '451'
|
2264
|
+
Set-Cookie:
|
2265
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2266
|
+
- server=prod-ws042.ec2|UmoW4; path=/
|
2267
|
+
Pragma:
|
2268
|
+
- no-cache
|
2269
|
+
Cache-Control:
|
2270
|
+
- no-store
|
2271
|
+
X-Server-Name:
|
2272
|
+
- prod-ws042.ec2
|
2273
|
+
X-Asana-Preferred-Release-Revision:
|
2274
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2275
|
+
X-Robots-Tag:
|
2276
|
+
- none
|
2277
|
+
Strict-Transport-Security:
|
2278
|
+
- max-age=31536000; includeSubDomains
|
2279
|
+
body:
|
2280
|
+
encoding: US-ASCII
|
2281
|
+
string: ! '{"data":{"id":8039428979858,"created_at":"2013-10-10T12:53:38.060Z","modified_at":"2013-10-11T04:13:08.144Z","name":"Add
|
2282
|
+
vhost for Yasmany","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2283
|
+
Perez"},"completed":true,"assignee_status":"inbox","completed_at":"2013-10-11T04:13:07.102Z","due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2284
|
+
Perez"}]}}'
|
2285
|
+
http_version:
|
2286
|
+
recorded_at: Fri, 25 Oct 2013 06:59:38 GMT
|
2287
|
+
- request:
|
2288
|
+
method: get
|
2289
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8117307109046
|
2290
|
+
body:
|
2291
|
+
encoding: US-ASCII
|
2292
|
+
string: ''
|
2293
|
+
headers:
|
2294
|
+
Accept:
|
2295
|
+
- application/json
|
2296
|
+
Accept-Encoding:
|
2297
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2298
|
+
User-Agent:
|
2299
|
+
- Ruby
|
2300
|
+
response:
|
2301
|
+
status:
|
2302
|
+
code: 200
|
2303
|
+
message: OK
|
2304
|
+
headers:
|
2305
|
+
Server:
|
2306
|
+
- nginx/1.4.1
|
2307
|
+
Date:
|
2308
|
+
- Fri, 25 Oct 2013 06:59:41 GMT
|
2309
|
+
Content-Type:
|
2310
|
+
- application/json; charset=UTF-8
|
2311
|
+
Content-Length:
|
2312
|
+
- '523'
|
2313
|
+
Connection:
|
2314
|
+
- keep-alive
|
2315
|
+
X-Asana-Content-String-Length:
|
2316
|
+
- '523'
|
2317
|
+
Set-Cookie:
|
2318
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2319
|
+
- server=prod-ws029.ec2|UmoW4; path=/
|
2320
|
+
Pragma:
|
2321
|
+
- no-cache
|
2322
|
+
Cache-Control:
|
2323
|
+
- no-store
|
2324
|
+
X-Server-Name:
|
2325
|
+
- prod-ws029.ec2
|
2326
|
+
X-Asana-Preferred-Release-Revision:
|
2327
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2328
|
+
X-Robots-Tag:
|
2329
|
+
- none
|
2330
|
+
Strict-Transport-Security:
|
2331
|
+
- max-age=31536000; includeSubDomains
|
2332
|
+
body:
|
2333
|
+
encoding: US-ASCII
|
2334
|
+
string: ! '{"data":{"id":8117307109046,"created_at":"2013-10-11T04:11:21.547Z","modified_at":"2013-10-20T12:02:00.567Z","name":"Follow-up
|
2335
|
+
on Mladen''s lawyer friend","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2336
|
+
Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-20T12:01:59.625Z","due_on":"2013-10-20","projects":[{"id":8039642124690,"name":"Read/Research/Review"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2337
|
+
Perez"}]}}'
|
2338
|
+
http_version:
|
2339
|
+
recorded_at: Fri, 25 Oct 2013 06:59:39 GMT
|
2340
|
+
- request:
|
2341
|
+
method: get
|
2342
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8039642124727
|
2343
|
+
body:
|
2344
|
+
encoding: US-ASCII
|
2345
|
+
string: ''
|
2346
|
+
headers:
|
2347
|
+
Accept:
|
2348
|
+
- application/json
|
2349
|
+
Accept-Encoding:
|
2350
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2351
|
+
User-Agent:
|
2352
|
+
- Ruby
|
2353
|
+
response:
|
2354
|
+
status:
|
2355
|
+
code: 200
|
2356
|
+
message: OK
|
2357
|
+
headers:
|
2358
|
+
Server:
|
2359
|
+
- nginx/1.4.1
|
2360
|
+
Date:
|
2361
|
+
- Fri, 25 Oct 2013 06:59:42 GMT
|
2362
|
+
Content-Type:
|
2363
|
+
- application/json; charset=UTF-8
|
2364
|
+
Content-Length:
|
2365
|
+
- '480'
|
2366
|
+
Connection:
|
2367
|
+
- keep-alive
|
2368
|
+
X-Asana-Content-String-Length:
|
2369
|
+
- '480'
|
2370
|
+
Set-Cookie:
|
2371
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2372
|
+
- server=prod-ws042.ec2|UmoW4; path=/
|
2373
|
+
Pragma:
|
2374
|
+
- no-cache
|
2375
|
+
Cache-Control:
|
2376
|
+
- no-store
|
2377
|
+
X-Server-Name:
|
2378
|
+
- prod-ws042.ec2
|
2379
|
+
X-Asana-Preferred-Release-Revision:
|
2380
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2381
|
+
X-Robots-Tag:
|
2382
|
+
- none
|
2383
|
+
Strict-Transport-Security:
|
2384
|
+
- max-age=31536000; includeSubDomains
|
2385
|
+
body:
|
2386
|
+
encoding: US-ASCII
|
2387
|
+
string: ! '{"data":{"id":8039642124727,"created_at":"2013-10-07T03:56:21.190Z","modified_at":"2013-10-14T14:06:35.715Z","name":"Get
|
2388
|
+
a haircut","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-14T14:06:37.341Z","due_on":null,"projects":[{"id":8039642124674,"name":"Errands"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2389
|
+
Perez"}]}}'
|
2390
|
+
http_version:
|
2391
|
+
recorded_at: Fri, 25 Oct 2013 06:59:40 GMT
|
2392
|
+
- request:
|
2393
|
+
method: get
|
2394
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8147271031620
|
2395
|
+
body:
|
2396
|
+
encoding: US-ASCII
|
2397
|
+
string: ''
|
2398
|
+
headers:
|
2399
|
+
Accept:
|
2400
|
+
- application/json
|
2401
|
+
Accept-Encoding:
|
2402
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2403
|
+
User-Agent:
|
2404
|
+
- Ruby
|
2405
|
+
response:
|
2406
|
+
status:
|
2407
|
+
code: 200
|
2408
|
+
message: OK
|
2409
|
+
headers:
|
2410
|
+
Server:
|
2411
|
+
- nginx/1.4.1
|
2412
|
+
Date:
|
2413
|
+
- Fri, 25 Oct 2013 06:59:45 GMT
|
2414
|
+
Content-Type:
|
2415
|
+
- application/json; charset=UTF-8
|
2416
|
+
Content-Length:
|
2417
|
+
- '472'
|
2418
|
+
Connection:
|
2419
|
+
- keep-alive
|
2420
|
+
X-Asana-Content-String-Length:
|
2421
|
+
- '472'
|
2422
|
+
Set-Cookie:
|
2423
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2424
|
+
- server=prod-ws029.ec2|UmoW5; path=/
|
2425
|
+
Pragma:
|
2426
|
+
- no-cache
|
2427
|
+
Cache-Control:
|
2428
|
+
- no-store
|
2429
|
+
X-Server-Name:
|
2430
|
+
- prod-ws029.ec2
|
2431
|
+
X-Asana-Preferred-Release-Revision:
|
2432
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2433
|
+
X-Robots-Tag:
|
2434
|
+
- none
|
2435
|
+
Strict-Transport-Security:
|
2436
|
+
- max-age=31536000; includeSubDomains
|
2437
|
+
body:
|
2438
|
+
encoding: US-ASCII
|
2439
|
+
string: ! '{"data":{"id":8147271031620,"created_at":"2013-10-14T01:34:49.808Z","modified_at":"2013-10-14T14:06:37.636Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2440
|
+
Perez"},"completed":true,"assignee_status":"inbox","completed_at":"2013-10-14T14:06:38.847Z","due_on":null,"projects":[{"id":8039642124666,"name":"At
|
2441
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2442
|
+
Perez"}]}}'
|
2443
|
+
http_version:
|
2444
|
+
recorded_at: Fri, 25 Oct 2013 06:59:43 GMT
|
2445
|
+
- request:
|
2446
|
+
method: get
|
2447
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8336825082479
|
2448
|
+
body:
|
2449
|
+
encoding: US-ASCII
|
2450
|
+
string: ''
|
2451
|
+
headers:
|
2452
|
+
Accept:
|
2453
|
+
- application/json
|
2454
|
+
Accept-Encoding:
|
2455
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2456
|
+
User-Agent:
|
2457
|
+
- Ruby
|
2458
|
+
response:
|
2459
|
+
status:
|
2460
|
+
code: 200
|
2461
|
+
message: OK
|
2462
|
+
headers:
|
2463
|
+
Server:
|
2464
|
+
- nginx/1.4.1
|
2465
|
+
Date:
|
2466
|
+
- Fri, 25 Oct 2013 06:59:46 GMT
|
2467
|
+
Content-Type:
|
2468
|
+
- application/json; charset=UTF-8
|
2469
|
+
Content-Length:
|
2470
|
+
- '459'
|
2471
|
+
Connection:
|
2472
|
+
- keep-alive
|
2473
|
+
X-Asana-Content-String-Length:
|
2474
|
+
- '459'
|
2475
|
+
Set-Cookie:
|
2476
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2477
|
+
- server=prod-ws047.ec2|UmoW5; path=/
|
2478
|
+
Pragma:
|
2479
|
+
- no-cache
|
2480
|
+
Cache-Control:
|
2481
|
+
- no-store
|
2482
|
+
X-Server-Name:
|
2483
|
+
- prod-ws047.ec2
|
2484
|
+
X-Asana-Preferred-Release-Revision:
|
2485
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2486
|
+
X-Robots-Tag:
|
2487
|
+
- none
|
2488
|
+
Strict-Transport-Security:
|
2489
|
+
- max-age=31536000; includeSubDomains
|
2490
|
+
body:
|
2491
|
+
encoding: US-ASCII
|
2492
|
+
string: ! '{"data":{"id":8336825082479,"created_at":"2013-10-25T05:17:28.688Z","modified_at":"2013-10-25T05:17:37.521Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2493
|
+
Perez"},"completed":false,"assignee_status":"today","completed_at":null,"due_on":"2013-10-27","projects":[{"id":8039642124666,"name":"At
|
2494
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2495
|
+
Perez"}]}}'
|
2496
|
+
http_version:
|
2497
|
+
recorded_at: Fri, 25 Oct 2013 06:59:43 GMT
|
2498
|
+
- request:
|
2499
|
+
method: get
|
2500
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8040754108590
|
2501
|
+
body:
|
2502
|
+
encoding: US-ASCII
|
2503
|
+
string: ''
|
2504
|
+
headers:
|
2505
|
+
Accept:
|
2506
|
+
- application/json
|
2507
|
+
Accept-Encoding:
|
2508
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2509
|
+
User-Agent:
|
2510
|
+
- Ruby
|
2511
|
+
response:
|
2512
|
+
status:
|
2513
|
+
code: 200
|
2514
|
+
message: OK
|
2515
|
+
headers:
|
2516
|
+
Server:
|
2517
|
+
- nginx/1.4.1
|
2518
|
+
Date:
|
2519
|
+
- Fri, 25 Oct 2013 06:59:49 GMT
|
2520
|
+
Content-Type:
|
2521
|
+
- application/json; charset=UTF-8
|
2522
|
+
Content-Length:
|
2523
|
+
- '493'
|
2524
|
+
Connection:
|
2525
|
+
- keep-alive
|
2526
|
+
X-Asana-Content-String-Length:
|
2527
|
+
- '493'
|
2528
|
+
Set-Cookie:
|
2529
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2530
|
+
- server=prod-ws000.ec2|UmoW6; path=/
|
2531
|
+
Pragma:
|
2532
|
+
- no-cache
|
2533
|
+
Cache-Control:
|
2534
|
+
- no-store
|
2535
|
+
X-Server-Name:
|
2536
|
+
- prod-ws000.ec2
|
2537
|
+
X-Asana-Preferred-Release-Revision:
|
2538
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2539
|
+
X-Robots-Tag:
|
2540
|
+
- none
|
2541
|
+
Strict-Transport-Security:
|
2542
|
+
- max-age=31536000; includeSubDomains
|
2543
|
+
body:
|
2544
|
+
encoding: US-ASCII
|
2545
|
+
string: ! '{"data":{"id":8040754108590,"created_at":"2013-10-07T04:11:20.895Z","modified_at":"2013-10-14T22:12:39.386Z","name":"Backup
|
2546
|
+
Evernote notes to external drive","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2547
|
+
Perez"},"completed":false,"assignee_status":"today","completed_at":null,"due_on":"2013-10-15","projects":[{"id":8039642124666,"name":"At
|
2548
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2549
|
+
Perez"}]}}'
|
2550
|
+
http_version:
|
2551
|
+
recorded_at: Fri, 25 Oct 2013 06:59:46 GMT
|
2552
|
+
- request:
|
2553
|
+
method: get
|
2554
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8155686700712
|
2555
|
+
body:
|
2556
|
+
encoding: US-ASCII
|
2557
|
+
string: ''
|
2558
|
+
headers:
|
2559
|
+
Accept:
|
2560
|
+
- application/json
|
2561
|
+
Accept-Encoding:
|
2562
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2563
|
+
User-Agent:
|
2564
|
+
- Ruby
|
2565
|
+
response:
|
2566
|
+
status:
|
2567
|
+
code: 200
|
2568
|
+
message: OK
|
2569
|
+
headers:
|
2570
|
+
Server:
|
2571
|
+
- nginx/1.4.1
|
2572
|
+
Date:
|
2573
|
+
- Fri, 25 Oct 2013 06:59:50 GMT
|
2574
|
+
Content-Type:
|
2575
|
+
- application/json; charset=UTF-8
|
2576
|
+
Content-Length:
|
2577
|
+
- '480'
|
2578
|
+
Connection:
|
2579
|
+
- keep-alive
|
2580
|
+
X-Asana-Content-String-Length:
|
2581
|
+
- '480'
|
2582
|
+
Set-Cookie:
|
2583
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2584
|
+
- server=prod-ws024.ec2|UmoW6; path=/
|
2585
|
+
Pragma:
|
2586
|
+
- no-cache
|
2587
|
+
Cache-Control:
|
2588
|
+
- no-store
|
2589
|
+
X-Server-Name:
|
2590
|
+
- prod-ws024.ec2
|
2591
|
+
X-Asana-Preferred-Release-Revision:
|
2592
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2593
|
+
X-Robots-Tag:
|
2594
|
+
- none
|
2595
|
+
Strict-Transport-Security:
|
2596
|
+
- max-age=31536000; includeSubDomains
|
2597
|
+
body:
|
2598
|
+
encoding: US-ASCII
|
2599
|
+
string: ! '{"data":{"id":8155686700712,"created_at":"2013-10-14T14:06:37.404Z","modified_at":"2013-10-17T08:03:07.247Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2600
|
+
Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-17T08:03:06.196Z","due_on":"2013-10-16","projects":[{"id":8039642124666,"name":"At
|
2601
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2602
|
+
Perez"}]}}'
|
2603
|
+
http_version:
|
2604
|
+
recorded_at: Fri, 25 Oct 2013 06:59:47 GMT
|
2605
|
+
- request:
|
2606
|
+
method: get
|
2607
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8147271031626
|
2608
|
+
body:
|
2609
|
+
encoding: US-ASCII
|
2610
|
+
string: ''
|
2611
|
+
headers:
|
2612
|
+
Accept:
|
2613
|
+
- application/json
|
2614
|
+
Accept-Encoding:
|
2615
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2616
|
+
User-Agent:
|
2617
|
+
- Ruby
|
2618
|
+
response:
|
2619
|
+
status:
|
2620
|
+
code: 200
|
2621
|
+
message: OK
|
2622
|
+
headers:
|
2623
|
+
Server:
|
2624
|
+
- nginx/1.4.1
|
2625
|
+
Date:
|
2626
|
+
- Fri, 25 Oct 2013 06:59:53 GMT
|
2627
|
+
Content-Type:
|
2628
|
+
- application/json; charset=UTF-8
|
2629
|
+
Content-Length:
|
2630
|
+
- '445'
|
2631
|
+
Connection:
|
2632
|
+
- keep-alive
|
2633
|
+
X-Asana-Content-String-Length:
|
2634
|
+
- '445'
|
2635
|
+
Set-Cookie:
|
2636
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2637
|
+
- server=prod-ws017.ec2|UmoW7; path=/
|
2638
|
+
Pragma:
|
2639
|
+
- no-cache
|
2640
|
+
Cache-Control:
|
2641
|
+
- no-store
|
2642
|
+
X-Server-Name:
|
2643
|
+
- prod-ws017.ec2
|
2644
|
+
X-Asana-Preferred-Release-Revision:
|
2645
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2646
|
+
X-Robots-Tag:
|
2647
|
+
- none
|
2648
|
+
Strict-Transport-Security:
|
2649
|
+
- max-age=31536000; includeSubDomains
|
2650
|
+
body:
|
2651
|
+
encoding: US-ASCII
|
2652
|
+
string: ! '{"data":{"id":8147271031626,"created_at":"2013-10-16T02:55:12.588Z","modified_at":"2013-10-16T02:55:12.588Z","name":"Change
|
2653
|
+
hostel note to Kelly''s format","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2654
|
+
Perez"},"completed":false,"assignee_status":"inbox","completed_at":null,"due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2655
|
+
Perez"}]}}'
|
2656
|
+
http_version:
|
2657
|
+
recorded_at: Fri, 25 Oct 2013 06:59:50 GMT
|
2658
|
+
- request:
|
2659
|
+
method: get
|
2660
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8202413378179
|
2661
|
+
body:
|
2662
|
+
encoding: US-ASCII
|
2663
|
+
string: ''
|
2664
|
+
headers:
|
2665
|
+
Accept:
|
2666
|
+
- application/json
|
2667
|
+
Accept-Encoding:
|
2668
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2669
|
+
User-Agent:
|
2670
|
+
- Ruby
|
2671
|
+
response:
|
2672
|
+
status:
|
2673
|
+
code: 200
|
2674
|
+
message: OK
|
2675
|
+
headers:
|
2676
|
+
Server:
|
2677
|
+
- nginx/1.4.1
|
2678
|
+
Date:
|
2679
|
+
- Fri, 25 Oct 2013 06:59:53 GMT
|
2680
|
+
Content-Type:
|
2681
|
+
- application/json; charset=UTF-8
|
2682
|
+
Content-Length:
|
2683
|
+
- '450'
|
2684
|
+
Connection:
|
2685
|
+
- keep-alive
|
2686
|
+
X-Asana-Content-String-Length:
|
2687
|
+
- '450'
|
2688
|
+
Set-Cookie:
|
2689
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2690
|
+
- server=prod-ws005.ec2|UmoW7; path=/
|
2691
|
+
Pragma:
|
2692
|
+
- no-cache
|
2693
|
+
Cache-Control:
|
2694
|
+
- no-store
|
2695
|
+
X-Server-Name:
|
2696
|
+
- prod-ws005.ec2
|
2697
|
+
X-Asana-Preferred-Release-Revision:
|
2698
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2699
|
+
X-Robots-Tag:
|
2700
|
+
- none
|
2701
|
+
Strict-Transport-Security:
|
2702
|
+
- max-age=31536000; includeSubDomains
|
2703
|
+
body:
|
2704
|
+
encoding: US-ASCII
|
2705
|
+
string: ! '{"data":{"id":8202413378179,"created_at":"2013-10-16T20:02:00.784Z","modified_at":"2013-10-17T20:59:16.703Z","name":"Setup
|
2706
|
+
VPN on nexus 7","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"inbox","completed_at":"2013-10-17T20:59:15.286Z","due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2707
|
+
Perez"}]}}'
|
2708
|
+
http_version:
|
2709
|
+
recorded_at: Fri, 25 Oct 2013 06:59:51 GMT
|
2710
|
+
- request:
|
2711
|
+
method: get
|
2712
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8210482847796
|
2713
|
+
body:
|
2714
|
+
encoding: US-ASCII
|
2715
|
+
string: ''
|
2716
|
+
headers:
|
2717
|
+
Accept:
|
2718
|
+
- application/json
|
2719
|
+
Accept-Encoding:
|
2720
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2721
|
+
User-Agent:
|
2722
|
+
- Ruby
|
2723
|
+
response:
|
2724
|
+
status:
|
2725
|
+
code: 200
|
2726
|
+
message: OK
|
2727
|
+
headers:
|
2728
|
+
Server:
|
2729
|
+
- nginx/1.4.1
|
2730
|
+
Date:
|
2731
|
+
- Fri, 25 Oct 2013 06:59:54 GMT
|
2732
|
+
Content-Type:
|
2733
|
+
- application/json; charset=UTF-8
|
2734
|
+
Content-Length:
|
2735
|
+
- '480'
|
2736
|
+
Connection:
|
2737
|
+
- keep-alive
|
2738
|
+
X-Asana-Content-String-Length:
|
2739
|
+
- '480'
|
2740
|
+
Set-Cookie:
|
2741
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2742
|
+
- server=prod-ws044.ec2|UmoW7; path=/
|
2743
|
+
Pragma:
|
2744
|
+
- no-cache
|
2745
|
+
Cache-Control:
|
2746
|
+
- no-store
|
2747
|
+
X-Server-Name:
|
2748
|
+
- prod-ws044.ec2
|
2749
|
+
X-Asana-Preferred-Release-Revision:
|
2750
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2751
|
+
X-Robots-Tag:
|
2752
|
+
- none
|
2753
|
+
Strict-Transport-Security:
|
2754
|
+
- max-age=31536000; includeSubDomains
|
2755
|
+
body:
|
2756
|
+
encoding: US-ASCII
|
2757
|
+
string: ! '{"data":{"id":8210482847796,"created_at":"2013-10-17T08:03:07.091Z","modified_at":"2013-10-20T12:02:02.770Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2758
|
+
Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-20T12:02:01.882Z","due_on":"2013-10-19","projects":[{"id":8039642124666,"name":"At
|
2759
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2760
|
+
Perez"}]}}'
|
2761
|
+
http_version:
|
2762
|
+
recorded_at: Fri, 25 Oct 2013 06:59:52 GMT
|
2763
|
+
- request:
|
2764
|
+
method: get
|
2765
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8248338362315
|
2766
|
+
body:
|
2767
|
+
encoding: US-ASCII
|
2768
|
+
string: ''
|
2769
|
+
headers:
|
2770
|
+
Accept:
|
2771
|
+
- application/json
|
2772
|
+
Accept-Encoding:
|
2773
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2774
|
+
User-Agent:
|
2775
|
+
- Ruby
|
2776
|
+
response:
|
2777
|
+
status:
|
2778
|
+
code: 200
|
2779
|
+
message: OK
|
2780
|
+
headers:
|
2781
|
+
Server:
|
2782
|
+
- nginx/1.4.1
|
2783
|
+
Date:
|
2784
|
+
- Fri, 25 Oct 2013 06:59:55 GMT
|
2785
|
+
Content-Type:
|
2786
|
+
- application/json; charset=UTF-8
|
2787
|
+
Content-Length:
|
2788
|
+
- '485'
|
2789
|
+
Connection:
|
2790
|
+
- keep-alive
|
2791
|
+
X-Asana-Content-String-Length:
|
2792
|
+
- '485'
|
2793
|
+
Set-Cookie:
|
2794
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2795
|
+
- server=prod-ws024.ec2|UmoW7; path=/
|
2796
|
+
Pragma:
|
2797
|
+
- no-cache
|
2798
|
+
Cache-Control:
|
2799
|
+
- no-store
|
2800
|
+
X-Server-Name:
|
2801
|
+
- prod-ws024.ec2
|
2802
|
+
X-Asana-Preferred-Release-Revision:
|
2803
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2804
|
+
X-Robots-Tag:
|
2805
|
+
- none
|
2806
|
+
Strict-Transport-Security:
|
2807
|
+
- max-age=31536000; includeSubDomains
|
2808
|
+
body:
|
2809
|
+
encoding: US-ASCII
|
2810
|
+
string: ! '{"data":{"id":8248338362315,"created_at":"2013-10-20T12:32:53.969Z","modified_at":"2013-10-20T12:32:56.682Z","name":"Buy
|
2811
|
+
handkerchiefs","notes":"","assignee":{"id":7239846033035,"name":"Adrian Perez"},"completed":true,"assignee_status":"inbox","completed_at":"2013-10-20T12:32:55.979Z","due_on":null,"projects":[{"id":8039642124678,"name":"Shopping"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2812
|
+
Perez"}]}}'
|
2813
|
+
http_version:
|
2814
|
+
recorded_at: Fri, 25 Oct 2013 06:59:52 GMT
|
2815
|
+
- request:
|
2816
|
+
method: get
|
2817
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8248338362319
|
2818
|
+
body:
|
2819
|
+
encoding: US-ASCII
|
2820
|
+
string: ''
|
2821
|
+
headers:
|
2822
|
+
Accept:
|
2823
|
+
- application/json
|
2824
|
+
Accept-Encoding:
|
2825
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2826
|
+
User-Agent:
|
2827
|
+
- Ruby
|
2828
|
+
response:
|
2829
|
+
status:
|
2830
|
+
code: 200
|
2831
|
+
message: OK
|
2832
|
+
headers:
|
2833
|
+
Server:
|
2834
|
+
- nginx/1.4.1
|
2835
|
+
Date:
|
2836
|
+
- Fri, 25 Oct 2013 06:59:56 GMT
|
2837
|
+
Content-Type:
|
2838
|
+
- application/json; charset=UTF-8
|
2839
|
+
Content-Length:
|
2840
|
+
- '438'
|
2841
|
+
Connection:
|
2842
|
+
- keep-alive
|
2843
|
+
X-Asana-Content-String-Length:
|
2844
|
+
- '438'
|
2845
|
+
Set-Cookie:
|
2846
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2847
|
+
- server=prod-ws044.ec2|UmoW7; path=/
|
2848
|
+
Pragma:
|
2849
|
+
- no-cache
|
2850
|
+
Cache-Control:
|
2851
|
+
- no-store
|
2852
|
+
X-Server-Name:
|
2853
|
+
- prod-ws044.ec2
|
2854
|
+
X-Asana-Preferred-Release-Revision:
|
2855
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2856
|
+
X-Robots-Tag:
|
2857
|
+
- none
|
2858
|
+
Strict-Transport-Security:
|
2859
|
+
- max-age=31536000; includeSubDomains
|
2860
|
+
body:
|
2861
|
+
encoding: US-ASCII
|
2862
|
+
string: ! '{"data":{"id":8248338362319,"created_at":"2013-10-21T20:00:34.505Z","modified_at":"2013-10-21T20:00:34.505Z","name":"Install
|
2863
|
+
http://tvshowsapp.com","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2864
|
+
Perez"},"completed":false,"assignee_status":"inbox","completed_at":null,"due_on":null,"projects":[],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2865
|
+
Perez"}]}}'
|
2866
|
+
http_version:
|
2867
|
+
recorded_at: Fri, 25 Oct 2013 06:59:53 GMT
|
2868
|
+
- request:
|
2869
|
+
method: get
|
2870
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8252558577890
|
2871
|
+
body:
|
2872
|
+
encoding: US-ASCII
|
2873
|
+
string: ''
|
2874
|
+
headers:
|
2875
|
+
Accept:
|
2876
|
+
- application/json
|
2877
|
+
Accept-Encoding:
|
2878
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2879
|
+
User-Agent:
|
2880
|
+
- Ruby
|
2881
|
+
response:
|
2882
|
+
status:
|
2883
|
+
code: 200
|
2884
|
+
message: OK
|
2885
|
+
headers:
|
2886
|
+
Server:
|
2887
|
+
- nginx/1.4.1
|
2888
|
+
Date:
|
2889
|
+
- Fri, 25 Oct 2013 06:59:56 GMT
|
2890
|
+
Content-Type:
|
2891
|
+
- application/json; charset=UTF-8
|
2892
|
+
Content-Length:
|
2893
|
+
- '480'
|
2894
|
+
Connection:
|
2895
|
+
- keep-alive
|
2896
|
+
X-Asana-Content-String-Length:
|
2897
|
+
- '480'
|
2898
|
+
Set-Cookie:
|
2899
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2900
|
+
- server=prod-ws002.ec2|UmoW7; path=/
|
2901
|
+
Pragma:
|
2902
|
+
- no-cache
|
2903
|
+
Cache-Control:
|
2904
|
+
- no-store
|
2905
|
+
X-Server-Name:
|
2906
|
+
- prod-ws002.ec2
|
2907
|
+
X-Asana-Preferred-Release-Revision:
|
2908
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2909
|
+
X-Robots-Tag:
|
2910
|
+
- none
|
2911
|
+
Strict-Transport-Security:
|
2912
|
+
- max-age=31536000; includeSubDomains
|
2913
|
+
body:
|
2914
|
+
encoding: US-ASCII
|
2915
|
+
string: ! '{"data":{"id":8252558577890,"created_at":"2013-10-20T12:02:02.592Z","modified_at":"2013-10-22T16:29:02.831Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2916
|
+
Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-22T16:29:01.773Z","due_on":"2013-10-22","projects":[{"id":8039642124666,"name":"At
|
2917
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2918
|
+
Perez"}]}}'
|
2919
|
+
http_version:
|
2920
|
+
recorded_at: Fri, 25 Oct 2013 06:59:54 GMT
|
2921
|
+
- request:
|
2922
|
+
method: get
|
2923
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/tasks/8286020040511
|
2924
|
+
body:
|
2925
|
+
encoding: US-ASCII
|
2926
|
+
string: ''
|
2927
|
+
headers:
|
2928
|
+
Accept:
|
2929
|
+
- application/json
|
2930
|
+
Accept-Encoding:
|
2931
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2932
|
+
User-Agent:
|
2933
|
+
- Ruby
|
2934
|
+
response:
|
2935
|
+
status:
|
2936
|
+
code: 200
|
2937
|
+
message: OK
|
2938
|
+
headers:
|
2939
|
+
Server:
|
2940
|
+
- nginx/1.4.1
|
2941
|
+
Date:
|
2942
|
+
- Fri, 25 Oct 2013 06:59:57 GMT
|
2943
|
+
Content-Type:
|
2944
|
+
- application/json; charset=UTF-8
|
2945
|
+
Content-Length:
|
2946
|
+
- '480'
|
2947
|
+
Connection:
|
2948
|
+
- keep-alive
|
2949
|
+
X-Asana-Content-String-Length:
|
2950
|
+
- '480'
|
2951
|
+
Set-Cookie:
|
2952
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
2953
|
+
- server=prod-ws023.ec2|UmoW8; path=/
|
2954
|
+
Pragma:
|
2955
|
+
- no-cache
|
2956
|
+
Cache-Control:
|
2957
|
+
- no-store
|
2958
|
+
X-Server-Name:
|
2959
|
+
- prod-ws023.ec2
|
2960
|
+
X-Asana-Preferred-Release-Revision:
|
2961
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
2962
|
+
X-Robots-Tag:
|
2963
|
+
- none
|
2964
|
+
Strict-Transport-Security:
|
2965
|
+
- max-age=31536000; includeSubDomains
|
2966
|
+
body:
|
2967
|
+
encoding: US-ASCII
|
2968
|
+
string: ! '{"data":{"id":8286020040511,"created_at":"2013-10-22T16:29:02.589Z","modified_at":"2013-10-25T05:17:28.858Z","name":"Shave","notes":"","assignee":{"id":7239846033035,"name":"Adrian
|
2969
|
+
Perez"},"completed":true,"assignee_status":"today","completed_at":"2013-10-25T05:17:26.721Z","due_on":"2013-10-24","projects":[{"id":8039642124666,"name":"At
|
2970
|
+
Home"}],"tags":[],"workspace":{"id":7541141945964,"name":"Personal"},"parent":null,"followers":[{"id":7239846033035,"name":"Adrian
|
2971
|
+
Perez"}]}}'
|
2972
|
+
http_version:
|
2973
|
+
recorded_at: Fri, 25 Oct 2013 06:59:55 GMT
|
2974
|
+
- request:
|
2975
|
+
method: get
|
2976
|
+
uri: https://ASANA_TOKEN:@app.asana.com/api/1.0/workspaces/498346170860/tasks?assignee=me&include_archived=true
|
2977
|
+
body:
|
2978
|
+
encoding: US-ASCII
|
2979
|
+
string: ''
|
2980
|
+
headers:
|
2981
|
+
Accept:
|
2982
|
+
- application/json
|
2983
|
+
Accept-Encoding:
|
2984
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
2985
|
+
User-Agent:
|
2986
|
+
- Ruby
|
2987
|
+
response:
|
2988
|
+
status:
|
2989
|
+
code: 200
|
2990
|
+
message: OK
|
2991
|
+
headers:
|
2992
|
+
Server:
|
2993
|
+
- nginx/1.4.1
|
2994
|
+
Date:
|
2995
|
+
- Fri, 25 Oct 2013 06:59:58 GMT
|
2996
|
+
Content-Type:
|
2997
|
+
- application/json; charset=UTF-8
|
2998
|
+
Content-Length:
|
2999
|
+
- '11'
|
3000
|
+
Connection:
|
3001
|
+
- keep-alive
|
3002
|
+
X-Asana-Content-String-Length:
|
3003
|
+
- '11'
|
3004
|
+
Set-Cookie:
|
3005
|
+
- TooBusyRedirectCount=0; Version=1; Path=/
|
3006
|
+
- server=prod-ws004.ec2|UmoW8; path=/
|
3007
|
+
Pragma:
|
3008
|
+
- no-cache
|
3009
|
+
Cache-Control:
|
3010
|
+
- no-store
|
3011
|
+
X-Server-Name:
|
3012
|
+
- prod-ws004.ec2
|
3013
|
+
X-Asana-Preferred-Release-Revision:
|
3014
|
+
- 20131025_005050_e6081deb3b33856e100154253c944d9f0ca33d38
|
3015
|
+
X-Robots-Tag:
|
3016
|
+
- none
|
3017
|
+
Strict-Transport-Security:
|
3018
|
+
- max-age=31536000; includeSubDomains
|
3019
|
+
body:
|
3020
|
+
encoding: US-ASCII
|
3021
|
+
string: ! '{"data":[]}'
|
3022
|
+
http_version:
|
3023
|
+
recorded_at: Fri, 25 Oct 2013 06:59:55 GMT
|
3024
|
+
recorded_with: VCR 2.6.0
|