desk_api 0.1.3 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -2
- data/Gemfile +0 -6
- data/README.md +38 -31
- data/desk_api.gemspec +1 -4
- data/lib/desk_api.rb +5 -7
- data/lib/desk_api/client.rb +44 -57
- data/lib/desk_api/configuration.rb +89 -95
- data/lib/desk_api/default.rb +51 -55
- data/lib/desk_api/error.rb +42 -44
- data/lib/desk_api/rate_limit.rb +20 -22
- data/lib/desk_api/resource.rb +142 -65
- data/lib/desk_api/version.rb +1 -1
- data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_delete/deletes_a_resource.yml +22 -22
- data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_get/fetches_resources.yml +26 -26
- data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_patch/updates_a_resource.yml +30 -30
- data/spec/cassettes/DeskApi_Client/using_Basic_Authentication/_post/creates_a_resource.yml +27 -27
- data/spec/cassettes/DeskApi_Client/using_OAuth/_delete/deletes_a_resource.yml +22 -22
- data/spec/cassettes/DeskApi_Client/using_OAuth/_get/fetches_resources.yml +31 -286
- data/spec/cassettes/DeskApi_Client/using_OAuth/_patch/updates_a_resource.yml +35 -35
- data/spec/cassettes/DeskApi_Client/using_OAuth/_post/creates_a_resource.yml +28 -28
- data/spec/cassettes/DeskApi_Error/_from_response/can_be_created_from_a_faraday_response.yml +22 -22
- data/spec/cassettes/DeskApi_Error/_from_response/uses_the_body_message_if_present.yml +22 -22
- data/spec/cassettes/DeskApi_Error/on_validation_error/allows_access_to_error_hash.yml +22 -22
- data/spec/cassettes/DeskApi_Resource/_by_url/finds_resources_by_url.yml +37 -286
- data/spec/cassettes/DeskApi_Resource/_create/creates_a_new_topic.yml +27 -27
- data/spec/cassettes/DeskApi_Resource/_create/throws_an_error_creating_a_user.yml +54 -0
- data/spec/cassettes/DeskApi_Resource/_delete/deletes_a_resource.yml +83 -79
- data/spec/cassettes/DeskApi_Resource/_delete/throws_an_error_deleting_a_non_deletalbe_resource.yml +78 -28
- data/spec/cassettes/DeskApi_Resource/_exec_/can_be_forced_to_reload.yml +34 -285
- data/spec/cassettes/DeskApi_Resource/_exec_/loads_the_current_resource.yml +34 -285
- data/spec/cassettes/DeskApi_Resource/_find/has_an_alias_by_id.yml +54 -0
- data/spec/cassettes/DeskApi_Resource/_find/loads_the_requested_resource.yml +54 -0
- data/spec/cassettes/DeskApi_Resource/_get_linked_resource/returns_linked_resources.yml +113 -0
- data/spec/cassettes/DeskApi_Resource/_get_linked_resource/returns_nil_if_link_is_nil.yml +62 -0
- data/spec/cassettes/DeskApi_Resource/_get_linked_resource/saves_the_linked_resource_instead_of_the_url.yml +113 -0
- data/spec/cassettes/DeskApi_Resource/_method_missing/loads_the_resource_to_find_a_suitable_method.yml +34 -285
- data/spec/cassettes/DeskApi_Resource/_method_missing/raises_an_error_if_method_does_not_exist.yml +34 -285
- data/spec/cassettes/DeskApi_Resource/_page/keeps_the_resource_as_loaded.yml +113 -0
- data/spec/cassettes/DeskApi_Resource/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +62 -0
- data/spec/cassettes/DeskApi_Resource/_page/sets_the_resource_to_not_loaded.yml +113 -0
- data/spec/cassettes/DeskApi_Resource/_search/allows_searching_on_search_enabled_resources.yml +23 -23
- data/spec/cassettes/DeskApi_Resource/_search/throws_an_error_if_search_is_not_enabled.yml +52 -0
- data/spec/cassettes/DeskApi_Resource/_update/can_update_without_a_hash.yml +178 -58
- data/spec/cassettes/DeskApi_Resource/_update/throws_an_error_updating_a_user.yml +86 -28
- data/spec/cassettes/DeskApi_Resource/_update/updates_a_topic.yml +61 -57
- data/spec/desk_api/client_spec.rb +9 -16
- data/spec/desk_api/resource_spec.rb +118 -43
- data/spec/spec_helper.rb +1 -1
- metadata +24 -102
- data/lib/desk_api/action/create.rb +0 -15
- data/lib/desk_api/action/delete.rb +0 -9
- data/lib/desk_api/action/embeddable.rb +0 -47
- data/lib/desk_api/action/field.rb +0 -33
- data/lib/desk_api/action/link.rb +0 -29
- data/lib/desk_api/action/resource.rb +0 -14
- data/lib/desk_api/action/search.rb +0 -15
- data/lib/desk_api/action/update.rb +0 -17
- data/lib/desk_api/error/method_not_supported.rb +0 -9
- data/lib/desk_api/error/not_embeddable.rb +0 -8
- data/lib/desk_api/error/not_updateable.rb +0 -10
- data/lib/desk_api/error/parse_error.rb +0 -9
- data/lib/desk_api/resource/article.rb +0 -10
- data/lib/desk_api/resource/article_translation.rb +0 -8
- data/lib/desk_api/resource/attachment.rb +0 -8
- data/lib/desk_api/resource/case.rb +0 -11
- data/lib/desk_api/resource/company.rb +0 -8
- data/lib/desk_api/resource/customer.rb +0 -9
- data/lib/desk_api/resource/filter.rb +0 -7
- data/lib/desk_api/resource/inbound_mailbox.rb +0 -7
- data/lib/desk_api/resource/integration_url.rb +0 -9
- data/lib/desk_api/resource/job.rb +0 -9
- data/lib/desk_api/resource/label.rb +0 -9
- data/lib/desk_api/resource/macro.rb +0 -9
- data/lib/desk_api/resource/macro_action.rb +0 -7
- data/lib/desk_api/resource/note.rb +0 -7
- data/lib/desk_api/resource/page.rb +0 -64
- data/lib/desk_api/resource/reply.rb +0 -10
- data/lib/desk_api/resource/topic.rb +0 -9
- data/lib/desk_api/resource/topic_translation.rb +0 -9
- data/lib/desk_api/resource/user_preference.rb +0 -7
- data/lib/desk_api/resources.json +0 -76
- data/spec/cassettes/DeskApi_Client/_delete/deletes_a_resource.yml +0 -48
- data/spec/cassettes/DeskApi_Client/_get/fetches_resources.yml +0 -55
- data/spec/cassettes/DeskApi_Client/_patch/updates_a_resource.yml +0 -62
- data/spec/cassettes/DeskApi_Client/_post/creates_a_resource.yml +0 -58
- data/spec/cassettes/DeskApi_Resource_Case/once_closed/can_not_be_updated.yml +0 -124
- data/spec/cassettes/DeskApi_Resource_Page/_find/has_an_alias_by_id.yml +0 -54
- data/spec/cassettes/DeskApi_Resource_Page/_find/loads_the_requested_resource.yml +0 -54
- data/spec/cassettes/DeskApi_Resource_Page/_page/keeps_the_resource_as_loaded.yml +0 -113
- data/spec/cassettes/DeskApi_Resource_Page/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +0 -313
- data/spec/cassettes/DeskApi_Resource_Page/_page/sets_the_resource_to_not_loaded.yml +0 -113
- data/spec/desk_api/resource/case_spec.rb +0 -28
- data/spec/desk_api/resource/page_spec.rb +0 -68
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: patch
|
5
|
-
uri: https://devel.desk.com/api/v2/articles/
|
5
|
+
uri: https://devel.desk.com/api/v2/articles/1391017
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: '{"subject":"Testing Updated OAuth"}'
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
Content-Type:
|
15
15
|
- application/json
|
16
16
|
response:
|
@@ -18,49 +18,49 @@ http_interactions:
|
|
18
18
|
code: 200
|
19
19
|
message:
|
20
20
|
headers:
|
21
|
-
|
21
|
+
cache-control:
|
22
22
|
- max-age=0, private, must-revalidate
|
23
|
-
|
23
|
+
content-type:
|
24
24
|
- application/json; charset=utf-8
|
25
|
-
|
26
|
-
-
|
27
|
-
|
28
|
-
- '"
|
29
|
-
|
25
|
+
date:
|
26
|
+
- Thu, 12 Dec 2013 03:00:20 GMT
|
27
|
+
etag:
|
28
|
+
- '"458ad713ecdd753dfd815cd8f7a34fa7"'
|
29
|
+
server:
|
30
30
|
- nginx
|
31
|
-
|
31
|
+
status:
|
32
32
|
- 200 OK
|
33
|
-
|
33
|
+
vary:
|
34
34
|
- X-AppVersion
|
35
|
-
|
36
|
-
- '
|
37
|
-
|
35
|
+
x-appversion:
|
36
|
+
- '15.4'
|
37
|
+
x-frame-options:
|
38
38
|
- SAMEORIGIN
|
39
|
-
|
39
|
+
x-rack-cache:
|
40
40
|
- invalidate, pass
|
41
|
-
|
41
|
+
x-rate-limit-limit:
|
42
42
|
- '60'
|
43
|
-
|
44
|
-
- '
|
45
|
-
|
46
|
-
- '
|
47
|
-
|
48
|
-
-
|
49
|
-
|
50
|
-
- '0.
|
51
|
-
|
43
|
+
x-rate-limit-remaining:
|
44
|
+
- '58'
|
45
|
+
x-rate-limit-reset:
|
46
|
+
- '40'
|
47
|
+
x-request-id:
|
48
|
+
- 7c31abfc3e51c82adf61c89be70cb8f3
|
49
|
+
x-runtime:
|
50
|
+
- '0.173775'
|
51
|
+
x-ua-compatible:
|
52
52
|
- IE=Edge,chrome=1
|
53
|
-
|
54
|
-
- '
|
55
|
-
|
56
|
-
-
|
53
|
+
content-length:
|
54
|
+
- '1015'
|
55
|
+
connection:
|
56
|
+
- Close
|
57
57
|
body:
|
58
58
|
encoding: UTF-8
|
59
|
-
string: '{"subject":"Testing Updated OAuth","body":"
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
59
|
+
string: '{"subject":"Testing Updated OAuth","body":"OAuth testing","body_email":"OAuth
|
60
|
+
testing","body_email_auto":true,"body_chat":"OAuth testing","body_chat_auto":true,"body_web_callback":"OAuth
|
61
|
+
testing","body_web_callback_auto":true,"body_twitter":"OAuth testing","body_twitter_auto":true,"body_qna":"OAuth
|
62
|
+
testing","body_qna_auto":true,"body_phone":"OAuth testing","body_phone_auto":true,"body_facebook":"OAuth
|
63
|
+
testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":4,"quickcode":null,"in_support_center":null,"internal_notes":null,"publish_at":null,"created_at":"2013-12-12T02:55:05Z","updated_at":"2013-12-12T03:00:20Z","_links":{"self":{"href":"/api/v2/articles/1391017","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1391017/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}}'
|
64
64
|
http_version:
|
65
|
-
recorded_at:
|
65
|
+
recorded_at: Thu, 12 Dec 2013 03:00:21 GMT
|
66
66
|
recorded_with: VCR 2.5.0
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
Content-Type:
|
15
15
|
- application/json
|
16
16
|
response:
|
@@ -18,45 +18,45 @@ http_interactions:
|
|
18
18
|
code: 201
|
19
19
|
message:
|
20
20
|
headers:
|
21
|
-
|
21
|
+
accept-ranges:
|
22
22
|
- bytes
|
23
|
-
|
23
|
+
cache-control:
|
24
24
|
- max-age=0, private, must-revalidate
|
25
|
-
|
25
|
+
content-type:
|
26
26
|
- application/json; charset=utf-8
|
27
|
-
|
28
|
-
-
|
29
|
-
|
30
|
-
- '"
|
31
|
-
|
32
|
-
- https://devel.desk.com/api/v2/articles/
|
33
|
-
|
27
|
+
date:
|
28
|
+
- Thu, 12 Dec 2013 02:55:05 GMT
|
29
|
+
etag:
|
30
|
+
- '"aa367323d958696d4588ca265bd79359"'
|
31
|
+
location:
|
32
|
+
- https://devel.desk.com/api/v2/articles/1391017
|
33
|
+
status:
|
34
34
|
- 201 Created
|
35
|
-
|
35
|
+
vary:
|
36
36
|
- X-AppVersion
|
37
|
-
|
38
|
-
- '
|
39
|
-
|
37
|
+
x-appversion:
|
38
|
+
- '15.4'
|
39
|
+
x-frame-options:
|
40
40
|
- SAMEORIGIN
|
41
|
-
|
41
|
+
x-rate-limit-limit:
|
42
42
|
- '60'
|
43
|
-
|
44
|
-
- '
|
45
|
-
|
46
|
-
- '
|
47
|
-
|
48
|
-
-
|
49
|
-
|
50
|
-
- '
|
51
|
-
|
52
|
-
-
|
43
|
+
x-rate-limit-remaining:
|
44
|
+
- '54'
|
45
|
+
x-rate-limit-reset:
|
46
|
+
- '55'
|
47
|
+
x-request-id:
|
48
|
+
- 4d67b377839b367e3165bd121eba3ddb
|
49
|
+
content-length:
|
50
|
+
- '1007'
|
51
|
+
connection:
|
52
|
+
- Close
|
53
53
|
body:
|
54
54
|
encoding: UTF-8
|
55
55
|
string: '{"subject":"Testing OAuth","body":"OAuth testing","body_email":"OAuth
|
56
56
|
testing","body_email_auto":true,"body_chat":"OAuth testing","body_chat_auto":true,"body_web_callback":"OAuth
|
57
57
|
testing","body_web_callback_auto":true,"body_twitter":"OAuth testing","body_twitter_auto":true,"body_qna":"OAuth
|
58
58
|
testing","body_qna_auto":true,"body_phone":"OAuth testing","body_phone_auto":true,"body_facebook":"OAuth
|
59
|
-
testing","body_facebook_auto":true,"keywords":null,"position":
|
59
|
+
testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":4,"quickcode":null,"in_support_center":null,"internal_notes":null,"publish_at":null,"created_at":"2013-12-12T02:55:05Z","updated_at":"2013-12-12T02:55:05Z","_links":{"self":{"href":"/api/v2/articles/1391017","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1391017/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}}'
|
60
60
|
http_version:
|
61
|
-
recorded_at:
|
61
|
+
recorded_at: Thu, 12 Dec 2013 02:55:05 GMT
|
62
62
|
recorded_with: VCR 2.5.0
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
Content-Type:
|
15
15
|
- application/json
|
16
16
|
response:
|
@@ -18,37 +18,37 @@ http_interactions:
|
|
18
18
|
code: 422
|
19
19
|
message:
|
20
20
|
headers:
|
21
|
-
|
21
|
+
accept-ranges:
|
22
22
|
- bytes
|
23
|
-
|
23
|
+
cache-control:
|
24
24
|
- no-cache
|
25
|
-
|
25
|
+
content-type:
|
26
26
|
- application/json; charset=utf-8
|
27
|
-
|
28
|
-
-
|
29
|
-
|
27
|
+
date:
|
28
|
+
- Thu, 12 Dec 2013 19:20:50 GMT
|
29
|
+
status:
|
30
30
|
- 422 Unprocessable Entity
|
31
|
-
|
31
|
+
vary:
|
32
32
|
- X-AppVersion
|
33
|
-
|
34
|
-
- '
|
35
|
-
|
33
|
+
x-appversion:
|
34
|
+
- '15.6'
|
35
|
+
x-frame-options:
|
36
36
|
- SAMEORIGIN
|
37
|
-
|
37
|
+
x-rate-limit-limit:
|
38
38
|
- '60'
|
39
|
-
|
40
|
-
- '
|
41
|
-
|
42
|
-
- '
|
43
|
-
|
44
|
-
-
|
45
|
-
|
39
|
+
x-rate-limit-remaining:
|
40
|
+
- '59'
|
41
|
+
x-rate-limit-reset:
|
42
|
+
- '10'
|
43
|
+
x-request-id:
|
44
|
+
- b72a910728f1d7c5a8cd82113371ced7
|
45
|
+
content-length:
|
46
46
|
- '71'
|
47
|
-
|
48
|
-
-
|
47
|
+
connection:
|
48
|
+
- Close
|
49
49
|
body:
|
50
50
|
encoding: UTF-8
|
51
51
|
string: '{"message":"Validation Failed","errors":{"_links":{"topic":["blank"]}}}'
|
52
52
|
http_version:
|
53
|
-
recorded_at:
|
53
|
+
recorded_at: Thu, 12 Dec 2013 19:20:51 GMT
|
54
54
|
recorded_with: VCR 2.5.0
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
Content-Type:
|
15
15
|
- application/json
|
16
16
|
response:
|
@@ -18,37 +18,37 @@ http_interactions:
|
|
18
18
|
code: 422
|
19
19
|
message:
|
20
20
|
headers:
|
21
|
-
|
21
|
+
accept-ranges:
|
22
22
|
- bytes
|
23
|
-
|
23
|
+
cache-control:
|
24
24
|
- no-cache
|
25
|
-
|
25
|
+
content-type:
|
26
26
|
- application/json; charset=utf-8
|
27
|
-
|
28
|
-
-
|
29
|
-
|
27
|
+
date:
|
28
|
+
- Thu, 12 Dec 2013 19:21:22 GMT
|
29
|
+
status:
|
30
30
|
- 422 Unprocessable Entity
|
31
|
-
|
31
|
+
vary:
|
32
32
|
- X-AppVersion
|
33
|
-
|
34
|
-
- '
|
35
|
-
|
33
|
+
x-appversion:
|
34
|
+
- '15.6'
|
35
|
+
x-frame-options:
|
36
36
|
- SAMEORIGIN
|
37
|
-
|
37
|
+
x-rate-limit-limit:
|
38
38
|
- '60'
|
39
|
-
|
40
|
-
- '
|
41
|
-
|
42
|
-
- '
|
43
|
-
|
44
|
-
-
|
45
|
-
|
39
|
+
x-rate-limit-remaining:
|
40
|
+
- '59'
|
41
|
+
x-rate-limit-reset:
|
42
|
+
- '38'
|
43
|
+
x-request-id:
|
44
|
+
- 17a744a71526509a869ed6e318f05c40
|
45
|
+
content-length:
|
46
46
|
- '71'
|
47
|
-
|
48
|
-
-
|
47
|
+
connection:
|
48
|
+
- Close
|
49
49
|
body:
|
50
50
|
encoding: UTF-8
|
51
51
|
string: '{"message":"Validation Failed","errors":{"_links":{"topic":["blank"]}}}'
|
52
52
|
http_version:
|
53
|
-
recorded_at:
|
53
|
+
recorded_at: Thu, 12 Dec 2013 19:21:22 GMT
|
54
54
|
recorded_with: VCR 2.5.0
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
Content-Type:
|
15
15
|
- application/json
|
16
16
|
response:
|
@@ -18,37 +18,37 @@ http_interactions:
|
|
18
18
|
code: 422
|
19
19
|
message:
|
20
20
|
headers:
|
21
|
-
|
21
|
+
accept-ranges:
|
22
22
|
- bytes
|
23
|
-
|
23
|
+
cache-control:
|
24
24
|
- no-cache
|
25
|
-
|
25
|
+
content-type:
|
26
26
|
- application/json; charset=utf-8
|
27
|
-
|
28
|
-
-
|
29
|
-
|
27
|
+
date:
|
28
|
+
- Thu, 12 Dec 2013 19:21:53 GMT
|
29
|
+
status:
|
30
30
|
- 422 Unprocessable Entity
|
31
|
-
|
31
|
+
vary:
|
32
32
|
- X-AppVersion
|
33
|
-
|
34
|
-
- '
|
35
|
-
|
33
|
+
x-appversion:
|
34
|
+
- '15.6'
|
35
|
+
x-frame-options:
|
36
36
|
- SAMEORIGIN
|
37
|
-
|
37
|
+
x-rate-limit-limit:
|
38
38
|
- '60'
|
39
|
-
|
40
|
-
- '
|
41
|
-
|
42
|
-
- '
|
43
|
-
|
44
|
-
-
|
45
|
-
|
39
|
+
x-rate-limit-remaining:
|
40
|
+
- '58'
|
41
|
+
x-rate-limit-reset:
|
42
|
+
- '7'
|
43
|
+
x-request-id:
|
44
|
+
- bf5edc9c549849bad994ce6b4084c908
|
45
|
+
content-length:
|
46
46
|
- '71'
|
47
|
-
|
48
|
-
-
|
47
|
+
connection:
|
48
|
+
- Close
|
49
49
|
body:
|
50
50
|
encoding: UTF-8
|
51
51
|
string: '{"message":"Validation Failed","errors":{"_links":{"topic":["blank"]}}}'
|
52
52
|
http_version:
|
53
|
-
recorded_at:
|
53
|
+
recorded_at: Thu, 12 Dec 2013 19:21:53 GMT
|
54
54
|
recorded_with: VCR 2.5.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://devel.desk.com/api/v2/articles/
|
5
|
+
uri: https://devel.desk.com/api/v2/articles/1295677
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -10,304 +10,55 @@ http_interactions:
|
|
10
10
|
Accept:
|
11
11
|
- application/json
|
12
12
|
User-Agent:
|
13
|
-
- desk.com Ruby Gem v0.1.
|
13
|
+
- desk.com Ruby Gem v0.1.3
|
14
14
|
response:
|
15
15
|
status:
|
16
16
|
code: 200
|
17
17
|
message:
|
18
18
|
headers:
|
19
|
-
|
19
|
+
accept-ranges:
|
20
20
|
- bytes
|
21
|
-
|
21
|
+
cache-control:
|
22
22
|
- must-revalidate, private, max-age=0
|
23
|
-
|
23
|
+
content-type:
|
24
24
|
- application/json; charset=utf-8
|
25
|
-
|
26
|
-
-
|
27
|
-
|
28
|
-
- '"
|
29
|
-
|
25
|
+
date:
|
26
|
+
- Thu, 12 Dec 2013 19:33:09 GMT
|
27
|
+
etag:
|
28
|
+
- '"93fc2ca7fb9e35fa06739e5a3d31bf67"'
|
29
|
+
status:
|
30
30
|
- 200 OK
|
31
|
-
|
31
|
+
vary:
|
32
32
|
- X-AppVersion
|
33
|
-
|
34
|
-
- '
|
35
|
-
|
33
|
+
x-appversion:
|
34
|
+
- '15.6'
|
35
|
+
x-frame-options:
|
36
36
|
- SAMEORIGIN
|
37
|
-
|
37
|
+
x-rate-limit-limit:
|
38
38
|
- '60'
|
39
|
-
|
40
|
-
- '
|
41
|
-
|
42
|
-
- '
|
43
|
-
|
44
|
-
-
|
45
|
-
|
46
|
-
- '
|
47
|
-
|
48
|
-
-
|
39
|
+
x-rate-limit-remaining:
|
40
|
+
- '59'
|
41
|
+
x-rate-limit-reset:
|
42
|
+
- '51'
|
43
|
+
x-request-id:
|
44
|
+
- 730279d818201bfeb87281b90e284d8f
|
45
|
+
content-length:
|
46
|
+
- '1825'
|
47
|
+
connection:
|
48
|
+
- Close
|
49
49
|
body:
|
50
50
|
encoding: UTF-8
|
51
|
-
string: '{"subject":"
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
63
|
-
of letters, as opposed to using 'Content here, content here', making
|
64
|
-
it look like readable English. Many desktop publishing packages and web page
|
65
|
-
editors now use Lorem Ipsum as their default model text, and a search for
|
66
|
-
'lorem ipsum' will uncover many web sites still in their infancy.
|
67
|
-
Various versions have evolved over the years, sometimes by accident, sometimes
|
68
|
-
on purpose (injected humour and the like).</p>\r\n</div>\r\n</div>\r\n<span
|
69
|
-
style=\"color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size:
|
70
|
-
11px; line-height: normal; text-align: center;\"> </span>\r\n\r\n<div>\r\n<div
|
71
|
-
class=\"lc\">\r\n<h2 class=\"where\"> </h2>\r\n\r\n<p>Contrary to popular
|
72
|
-
belief, Lorem Ipsum is not simply random text. It has roots in a piece of
|
73
|
-
classical Latin literature from 45 BC, making it over 2000 years old. Richard
|
74
|
-
McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked
|
75
|
-
up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,
|
76
|
-
and going through the cites of the word in classical literature, discovered
|
77
|
-
the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33
|
78
|
-
of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil)
|
79
|
-
by Cicero, written in 45 BC. This book is a treatise on the theory of ethics,
|
80
|
-
very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem
|
81
|
-
ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>\r\n\r\n<p>The
|
82
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
83
|
-
those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum
|
84
|
-
et Malorum" by Cicero are also reproduced in their exact original form,
|
85
|
-
accompanied by English versions from the 1914 translation by H. Rackham.</p>\r\n</div>\r\n\r\n<div
|
86
|
-
class=\"rc\">\r\n<h2 class=\"getsome\"> </h2>\r\n\r\n<p>There are many
|
87
|
-
variations of passages of Lorem Ipsum available, but the majority have suffered
|
88
|
-
alteration in some form, by injected humour, or randomised words which don't
|
89
|
-
look even slightly believable. If you are going to use a passage of Lorem
|
90
|
-
Ipsum, you need to be sure there isn't anything embarrassing hidden in
|
91
|
-
the middle of text. All the Lorem Ipsum generators on the Internet tend to
|
92
|
-
repeat predefined chunks as necessary, making this the first true generator
|
93
|
-
on the Internet. It uses a dictionary of over 200 Latin words, combined with
|
94
|
-
a handful of model sentence structures, to generate Lorem Ipsum which looks
|
95
|
-
reasonable. The generated Lorem Ipsum is therefore always free from repetition,
|
96
|
-
injected humour, or non-characteristic words etc.</p>\r\n</div>\r\n</div>\r\n","body_email":"Lorem
|
97
|
-
Ipsum is simply dummy text of the printing and typesetting industry. Lorem
|
98
|
-
Ipsum has been the industry''s standard dummy text ever since the 1500s, when
|
99
|
-
an unknown printer took a galley of type and scrambled it to make a type specimen
|
100
|
-
book. It has survived not only five centuries, but also the leap into electronic
|
101
|
-
typesetting, remaining essentially unchanged. It was popularised in the 1960s
|
102
|
-
with the release of Letraset sheets containing Lorem Ipsum passages, and more
|
103
|
-
recently with desktop publishing software like Aldus PageMaker including versions
|
104
|
-
of Lorem Ipsum. \r\n \r\n\r\n \r\n \r\n\r\n It is a long established fact
|
105
|
-
that a reader will be distracted by the readable content of a page when looking
|
106
|
-
at its layout. The point of using Lorem Ipsum is that it has a more-or-less
|
107
|
-
normal distribution of letters, as opposed to using ''Content here, content
|
108
|
-
here'', making it look like readable English. Many desktop publishing packages
|
109
|
-
and web page editors now use Lorem Ipsum as their default model text, and
|
110
|
-
a search for ''lorem ipsum'' will uncover many web sites still in their infancy.
|
111
|
-
Various versions have evolved over the years, sometimes by accident, sometimes
|
112
|
-
on purpose (injected humour and the like). \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n
|
113
|
-
Contrary to popular belief, Lorem Ipsum is not simply random text. It has
|
114
|
-
roots in a piece of classical Latin literature from 45 BC, making it over
|
115
|
-
2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College
|
116
|
-
in Virginia, looked up one of the more obscure Latin words, consectetur, from
|
117
|
-
a Lorem Ipsum passage, and going through the cites of the word in classical
|
118
|
-
literature, discovered the undoubtable source. Lorem Ipsum comes from sections
|
119
|
-
1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of
|
120
|
-
Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the
|
121
|
-
theory of ethics, very popular during the Renaissance. The first line of Lorem
|
122
|
-
Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe
|
123
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
124
|
-
those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et
|
125
|
-
Malorum\" by Cicero are also reproduced in their exact original form, accompanied
|
126
|
-
by English versions from the 1914 translation by H. Rackham. \r\n \r\n\r\n
|
127
|
-
\r\n \r\n\r\n There are many variations of passages of Lorem Ipsum available,
|
128
|
-
but the majority have suffered alteration in some form, by injected humour,
|
129
|
-
or randomised words which don''t look even slightly believable. If you are
|
130
|
-
going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything
|
131
|
-
embarrassing hidden in the middle of text. All the Lorem Ipsum generators
|
132
|
-
on the Internet tend to repeat predefined chunks as necessary, making this
|
133
|
-
the first true generator on the Internet. It uses a dictionary of over 200
|
134
|
-
Latin words, combined with a handful of model sentence structures, to generate
|
135
|
-
Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore
|
136
|
-
always free from repetition, injected humour, or non-characteristic words
|
137
|
-
etc.","body_email_auto":true,"body_chat":"Lorem Ipsum is simply dummy text
|
138
|
-
of the printing and typesetting industry. Lorem Ipsum has been the industry''s
|
139
|
-
standard dummy text ever since the 1500s, when an unknown printer took a galley
|
140
|
-
of type and scrambled it to make a type specimen book. It h... http://devel.desk.com/customer/portal/articles/1213277-asdf","body_chat_auto":true,"body_web_callback":"<div>\r\n<div
|
141
|
-
class=\"lc\">\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text
|
142
|
-
of the printing and typesetting industry. Lorem Ipsum has been the industry's
|
143
|
-
standard dummy text ever since the 1500s, when an unknown printer took a galley
|
144
|
-
of type and scrambled it to make a type specimen book. It has survived not
|
145
|
-
only five centuries, but also the leap into electronic typesetting, remaining
|
146
|
-
essentially unchanged. It was popularised in the 1960s with the release of
|
147
|
-
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
|
148
|
-
publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n</div>\r\n\r\n<div
|
149
|
-
class=\"rc\">\r\n<h2 class=\"why\"> </h2>\r\n\r\n<p>It is a long established
|
150
|
-
fact that a reader will be distracted by the readable content of a page when
|
151
|
-
looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less
|
152
|
-
normal distribution of letters, as opposed to using 'Content here, content
|
153
|
-
here', making it look like readable English. Many desktop publishing packages
|
154
|
-
and web page editors now use Lorem Ipsum as their default model text, and
|
155
|
-
a search for 'lorem ipsum' will uncover many web sites still in their
|
156
|
-
infancy. Various versions have evolved over the years, sometimes by accident,
|
157
|
-
sometimes on purpose (injected humour and the like).</p>\r\n</div>\r\n</div>\r\n<span
|
158
|
-
style=\"color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size:
|
159
|
-
11px; line-height: normal; text-align: center;\"> </span>\r\n\r\n<div>\r\n<div
|
160
|
-
class=\"lc\">\r\n<h2 class=\"where\"> </h2>\r\n\r\n<p>Contrary to popular
|
161
|
-
belief, Lorem Ipsum is not simply random text. It has roots in a piece of
|
162
|
-
classical Latin literature from 45 BC, making it over 2000 years old. Richard
|
163
|
-
McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked
|
164
|
-
up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,
|
165
|
-
and going through the cites of the word in classical literature, discovered
|
166
|
-
the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33
|
167
|
-
of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil)
|
168
|
-
by Cicero, written in 45 BC. This book is a treatise on the theory of ethics,
|
169
|
-
very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem
|
170
|
-
ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>\r\n\r\n<p>The
|
171
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
172
|
-
those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum
|
173
|
-
et Malorum" by Cicero are also reproduced in their exact original form,
|
174
|
-
accompanied by English versions from the 1914 translation by H. Rackham.</p>\r\n</div>\r\n\r\n<div
|
175
|
-
class=\"rc\">\r\n<h2 class=\"getsome\"> </h2>\r\n\r\n<p>There are many
|
176
|
-
variations of passages of Lorem Ipsum available, but the majority have suffered
|
177
|
-
alteration in some form, by injected humour, or randomised words which don't
|
178
|
-
look even slightly believable. If you are going to use a passage of Lorem
|
179
|
-
Ipsum, you need to be sure there isn't anything embarrassing hidden in
|
180
|
-
the middle of text. All the Lorem Ipsum generators on the Internet tend to
|
181
|
-
repeat predefined chunks as necessary, making this the first true generator
|
182
|
-
on the Internet. It uses a dictionary of over 200 Latin words, combined with
|
183
|
-
a handful of model sentence structures, to generate Lorem Ipsum which looks
|
184
|
-
reasonable. The generated Lorem Ipsum is therefore always free from repetition,
|
185
|
-
injected humour, or non-characteristic words etc.</p>\r\n</div>\r\n</div>\r\n","body_web_callback_auto":true,"body_twitter":"Lorem
|
186
|
-
Ipsum is simply dummy text of the printing and typesetting industry. Lorem
|
187
|
-
Ipsum has been the in... http://devel.desk.com/customer/portal/articles/1213277-asdf","body_twitter_auto":true,"body_qna":"Lorem
|
188
|
-
Ipsum is simply dummy text of the printing and typesetting industry. Lorem
|
189
|
-
Ipsum has been the industry''s standard dummy text ever since the 1500s, when
|
190
|
-
an unknown printer took a galley of type and scrambled it to make a type specimen
|
191
|
-
book. It has survived not only five centuries, but also the leap into electronic
|
192
|
-
typesetting, remaining essentially unchanged. It was popularised in the 1960s
|
193
|
-
with the release of Letraset sheets containing Lorem Ipsum passages, and more
|
194
|
-
recently with desktop publishing software like Aldus PageMaker including versions
|
195
|
-
of Lorem Ipsum. \r\n \r\n\r\n \r\n \r\n\r\n It is a long established fact
|
196
|
-
that a reader will be distracted by the readable content of a page when looking
|
197
|
-
at its layout. The point of using Lorem Ipsum is that it has a more-or-less
|
198
|
-
normal distribution of letters, as opposed to using ''Content here, content
|
199
|
-
here'', making it look like readable English. Many desktop publishing packages
|
200
|
-
and web page editors now use Lorem Ipsum as their default model text, and
|
201
|
-
a search for ''lorem ipsum'' will uncover many web sites still in their infancy.
|
202
|
-
Various versions have evolved over the years, sometimes by accident, sometimes
|
203
|
-
on purpose (injected humour and the like). \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n
|
204
|
-
Contrary to popular belief, Lorem Ipsum is not simply random text. It has
|
205
|
-
roots in a piece of classical Latin literature from 45 BC, making it over
|
206
|
-
2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College
|
207
|
-
in Virginia, looked up one of the more obscure Latin words, consectetur, from
|
208
|
-
a Lorem Ipsum passage, and going through the cites of the word in classical
|
209
|
-
literature, discovered the undoubtable source. Lorem Ipsum comes from sections
|
210
|
-
1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of
|
211
|
-
Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the
|
212
|
-
theory of ethics, very popular during the Renaissance. The first line of Lorem
|
213
|
-
Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe
|
214
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
215
|
-
those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et
|
216
|
-
Malorum\" by Cicero are also reproduced in their exact original form, accompanied
|
217
|
-
by English versions from the 1914 translation by H. Rackham. \r\n \r\n\r\n
|
218
|
-
\r\n \r\n\r\n There are many variations of passages of Lorem Ipsum available,
|
219
|
-
but the majority have suffered alteration in some form, by injected humour,
|
220
|
-
or randomised words which don''t look even slightly believable. If you are
|
221
|
-
going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything
|
222
|
-
embarrassing hidden in the middle of text. All the Lorem Ipsum generators
|
223
|
-
on the Internet tend to repeat predefined chunks as necessary, making this
|
224
|
-
the first true generator on the Internet. It uses a dictionary of over 200
|
225
|
-
Latin words, combined with a handful of model sentence structures, to generate
|
226
|
-
Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore
|
227
|
-
always free from repetition, injected humour, or non-characteristic words
|
228
|
-
etc.","body_qna_auto":true,"body_phone":"Lorem Ipsum is simply dummy text
|
229
|
-
of the printing and typesetting industry. Lorem Ipsum has been the industry''s
|
230
|
-
standard dummy text ever since the 1500s, when an unknown printer took a galley
|
231
|
-
of type and scrambled it to make a type specimen book. It has survived not
|
232
|
-
only five centuries, but also the leap into electronic typesetting, remaining
|
233
|
-
essentially unchanged. It was popularised in the 1960s with the release of
|
234
|
-
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
|
235
|
-
publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
236
|
-
\r\n \r\n\r\n \r\n \r\n\r\n It is a long established fact that a reader
|
237
|
-
will be distracted by the readable content of a page when looking at its layout.
|
238
|
-
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
239
|
-
of letters, as opposed to using ''Content here, content here'', making it
|
240
|
-
look like readable English. Many desktop publishing packages and web page
|
241
|
-
editors now use Lorem Ipsum as their default model text, and a search for
|
242
|
-
''lorem ipsum'' will uncover many web sites still in their infancy. Various
|
243
|
-
versions have evolved over the years, sometimes by accident, sometimes on
|
244
|
-
purpose (injected humour and the like). \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n
|
245
|
-
Contrary to popular belief, Lorem Ipsum is not simply random text. It has
|
246
|
-
roots in a piece of classical Latin literature from 45 BC, making it over
|
247
|
-
2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College
|
248
|
-
in Virginia, looked up one of the more obscure Latin words, consectetur, from
|
249
|
-
a Lorem Ipsum passage, and going through the cites of the word in classical
|
250
|
-
literature, discovered the undoubtable source. Lorem Ipsum comes from sections
|
251
|
-
1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of
|
252
|
-
Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the
|
253
|
-
theory of ethics, very popular during the Renaissance. The first line of Lorem
|
254
|
-
Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe
|
255
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
256
|
-
those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et
|
257
|
-
Malorum\" by Cicero are also reproduced in their exact original form, accompanied
|
258
|
-
by English versions from the 1914 translation by H. Rackham. \r\n \r\n\r\n
|
259
|
-
\r\n \r\n\r\n There are many variations of passages of Lorem Ipsum available,
|
260
|
-
but the majority have suffered alteration in some form, by injected humour,
|
261
|
-
or randomised words which don''t look even slightly believable. If you are
|
262
|
-
going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything
|
263
|
-
embarrassing hidden in the middle of text. All the Lorem Ipsum generators
|
264
|
-
on the Internet tend to repeat predefined chunks as necessary, making this
|
265
|
-
the first true generator on the Internet. It uses a dictionary of over 200
|
266
|
-
Latin words, combined with a handful of model sentence structures, to generate
|
267
|
-
Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore
|
268
|
-
always free from repetition, injected humour, or non-characteristic words
|
269
|
-
etc.","body_phone_auto":true,"body_facebook":"Lorem Ipsum is simply dummy
|
270
|
-
text of the printing and typesetting industry. Lorem Ipsum has been the industry''s
|
271
|
-
standard dummy text ever since the 1500s, when an unknown printer took a galley
|
272
|
-
of type and scrambled it to make a type specimen book. It has survived not
|
273
|
-
only five centuries, but also the leap into electronic typesetting, remaining
|
274
|
-
essentially unchanged. It was popularised in the 1960s with the release of
|
275
|
-
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
|
276
|
-
publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
277
|
-
\r\n \r\n\r\n \r\n \r\n\r\n It is a long established fact that a reader
|
278
|
-
will be distracted by the readable content of a page when looking at its layout.
|
279
|
-
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
280
|
-
of letters, as opposed to using ''Content here, content here'', making it
|
281
|
-
look like readable English. Many desktop publishing packages and web page
|
282
|
-
editors now use Lorem Ipsum as their default model text, and a search for
|
283
|
-
''lorem ipsum'' will uncover many web sites still in their infancy. Various
|
284
|
-
versions have evolved over the years, sometimes by accident, sometimes on
|
285
|
-
purpose (injected humour and the like). \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n
|
286
|
-
Contrary to popular belief, Lorem Ipsum is not simply random text. It has
|
287
|
-
roots in a piece of classical Latin literature from 45 BC, making it over
|
288
|
-
2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College
|
289
|
-
in Virginia, looked up one of the more obscure Latin words, consectetur, from
|
290
|
-
a Lorem Ipsum passage, and going through the cites of the word in classical
|
291
|
-
literature, discovered the undoubtable source. Lorem Ipsum comes from sections
|
292
|
-
1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of
|
293
|
-
Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the
|
294
|
-
theory of ethics, very popular during the Renaissance. The first line of Lorem
|
295
|
-
Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe
|
296
|
-
standard chunk of Lorem Ipsum used since the 1500s is reproduced below for
|
297
|
-
those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et
|
298
|
-
Malorum\" by Cicero are also reproduced in their exact original form, accompanied
|
299
|
-
by English versions from the 1914 translation by H. Rackham. \r\n \r\n\r\n
|
300
|
-
\r\n \r\n\r\n There are many variations of passages of Lorem Ipsum available,
|
301
|
-
but the majority have suffered alteration in some form, by injected humour,
|
302
|
-
or randomised words which don''t look even slightly believable. If you are
|
303
|
-
going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything
|
304
|
-
embarrassing hidden in the middle of text. All the Lorem Ipsum generators
|
305
|
-
on the Internet tend to repeat predefined chunks as necessary, making this
|
306
|
-
the first true generator on the Internet. It uses a dictionary of over 200
|
307
|
-
Latin words, combined with a handful of model sentence structures, to generate
|
308
|
-
Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore
|
309
|
-
always free from repetition, injected humour, or non-characteristic words
|
310
|
-
etc.","body_facebook_auto":true,"keywords":"","position":1,"quickcode":null,"in_support_center":true,"internal_notes":"","publish_at":"2013-08-05T01:13:36Z","created_at":"2013-07-05T15:45:25Z","updated_at":"2013-08-19T23:51:33Z","_links":{"self":{"href":"/api/v2/articles/1213277","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1213277/translations","class":"article_translation"}}}'
|
51
|
+
string: '{"subject":"Lecteur {Continuer ancien}","body":"Bonjour {{customer.first_name}}, <br
|
52
|
+
/> <br /> Merci de nous avoir écrit. Vous pouvez continuer à
|
53
|
+
utiliser toutes les versions du Lecteur Square pour accepter des paiements.
|
54
|
+
Les lecteurs précédents ne comportent aucun défaut de
|
55
|
+
conception. Vous pouvez aussi commander gratuitement un nouveau lecteur depuis
|
56
|
+
le tableau de bord Square en ligne. <br /> <br /> Pour cela, connectez-vous
|
57
|
+
à votre tableau de bord à l’adresse www.squareup.com/dashboard
|
58
|
+
et cliquez sur « Obtenir un lecteur de carte » dans
|
59
|
+
le menu déroulant situé dans le coin supérieur droit
|
60
|
+
de la page.<br /> <br /> N’hésitez pas à me contacter
|
61
|
+
pour toute question supplémentaire. Je suis là pour vous aider.","body_email":"Testing","body_email_auto":true,"body_chat":"Testing","body_chat_auto":true,"body_web_callback":"<table><tr><td>Testing</td></tr></table>","body_web_callback_auto":true,"body_twitter":"Testing","body_twitter_auto":true,"body_qna":"Testing","body_qna_auto":true,"body_phone":"Testing","body_phone_auto":true,"body_facebook":"Testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":"","position":1,"quickcode":null,"in_support_center":false,"internal_notes":null,"publish_at":"2013-09-11T19:13:21Z","created_at":"2013-09-11T19:11:48Z","updated_at":"2013-09-11T19:13:21Z","_links":{"self":{"href":"/api/v2/articles/1295677","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1295677/translations","class":"article_translation"},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}}'
|
311
62
|
http_version:
|
312
|
-
recorded_at:
|
63
|
+
recorded_at: Thu, 12 Dec 2013 19:33:09 GMT
|
313
64
|
recorded_with: VCR 2.5.0
|