aylien_text_api 0.3.0 → 0.4.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/Gemfile.lock +6 -6
- data/lib/aylien_text_api/client.rb +160 -12
- data/lib/aylien_text_api/configuration.rb +1 -0
- data/lib/aylien_text_api/error.rb +5 -2
- data/lib/aylien_text_api/version.rb +1 -1
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_invalid_client.yml +38 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_invalid_params.yml +57 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_invalid_taxonomy.yml +48 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_text.yml +75 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_unauthenticated_client.yml +42 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_valid_url.yml +155 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_value_as_text.yml +75 -0
- data/spec/fixtures/aylien_text_api/client/classify_by_taxonomy_with_value_as_valid_url.yml +155 -0
- data/spec/fixtures/aylien_text_api/client/classify_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/classify_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/classify_with_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/classify_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/classify_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/classify_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/classify_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/combined_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/combined_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/combined_with_text.yml +11 -11
- data/spec/fixtures/aylien_text_api/client/combined_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/combined_with_valid_url.yml +9 -9
- data/spec/fixtures/aylien_text_api/client/combined_with_value_as_text.yml +11 -11
- data/spec/fixtures/aylien_text_api/client/combined_with_value_as_valid_url.yml +9 -9
- data/spec/fixtures/aylien_text_api/client/concepts_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/concepts_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/concepts_with_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/concepts_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/concepts_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/concepts_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/concepts_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/entities_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/entities_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/entities_with_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/entities_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/entities_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/entities_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/entities_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/extract_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/extract_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/extract_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/extract_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/extract_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/extract_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/hashtags_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/hashtags_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/hashtags_with_text.yml +8 -8
- data/spec/fixtures/aylien_text_api/client/hashtags_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/hashtags_with_valid_url.yml +9 -9
- data/spec/fixtures/aylien_text_api/client/hashtags_with_value_as_text.yml +8 -8
- data/spec/fixtures/aylien_text_api/client/hashtags_with_value_as_valid_url.yml +9 -9
- data/spec/fixtures/aylien_text_api/client/image_tags_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/image_tags_with_invalid_params.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/image_tags_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/image_tags_with_valid_url.yml +8 -8
- data/spec/fixtures/aylien_text_api/client/image_tags_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/image_tags_with_value_as_valid_url.yml +8 -8
- data/spec/fixtures/aylien_text_api/client/language_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/language_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/language_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/language_with_valid_text.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/language_with_valid_url.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/language_with_value_as_text.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/language_with_value_as_valid_url.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/microformats_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/microformats_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/microformats_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/microformats_with_valid_url.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/microformats_with_value_as_valid_url.yml +6 -6
- data/spec/fixtures/aylien_text_api/client/related_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/related_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/related_with_phrase.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/related_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/related_with_value_as_phrase.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/related_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/sentiment_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/sentiment_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/sentiment_with_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/sentiment_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/sentiment_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/sentiment_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/sentiment_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/summarize_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_title_and_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/summarize_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_value_as_text_and_title.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_value_as_text_and_without_title.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/summarize_with_value_as_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_invalid_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_invalid_params.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_unauthenticated_client.yml +3 -3
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_valid_url.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_value_as_text.yml +5 -5
- data/spec/fixtures/aylien_text_api/client/unsupervised_classify_with_value_as_valid_url.yml +5 -5
- data/spec/lib/aylien_text_api/classify_by_taxonomy.rb +124 -0
- data/spec/lib/aylien_text_api/client_spec.rb +1 -0
- metadata +21 -2
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
response:
|
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
|
23
23
|
Server:
|
|
24
24
|
- openresty/1.7.7.2
|
|
25
25
|
Date:
|
|
26
|
-
- Thu,
|
|
26
|
+
- Thu, 17 Sep 2015 11:21:04 GMT
|
|
27
27
|
Content-Type:
|
|
28
28
|
- text/plain; charset=us-ascii
|
|
29
29
|
Transfer-Encoding:
|
|
@@ -34,5 +34,5 @@ http_interactions:
|
|
|
34
34
|
encoding: UTF-8
|
|
35
35
|
string: Authentication parameters missing
|
|
36
36
|
http_version:
|
|
37
|
-
recorded_at: Thu,
|
|
37
|
+
recorded_at: Thu, 17 Sep 2015 11:21:04 GMT
|
|
38
38
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:05 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206279'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: UTF-8
|
|
45
45
|
string: |-
|
|
@@ -53,5 +53,5 @@ http_interactions:
|
|
|
53
53
|
}]
|
|
54
54
|
}
|
|
55
55
|
http_version:
|
|
56
|
-
recorded_at: Thu,
|
|
56
|
+
recorded_at: Thu, 17 Sep 2015 11:21:05 GMT
|
|
57
57
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:04 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206280'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: UTF-8
|
|
45
45
|
string: |-
|
|
@@ -53,5 +53,5 @@ http_interactions:
|
|
|
53
53
|
}]
|
|
54
54
|
}
|
|
55
55
|
http_version:
|
|
56
|
-
recorded_at: Thu,
|
|
56
|
+
recorded_at: Thu, 17 Sep 2015 11:21:05 GMT
|
|
57
57
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:06 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- text/plain; charset=us-ascii
|
|
33
33
|
Transfer-Encoding:
|
|
@@ -38,5 +38,5 @@ http_interactions:
|
|
|
38
38
|
encoding: UTF-8
|
|
39
39
|
string: Authentication failed
|
|
40
40
|
http_version:
|
|
41
|
-
recorded_at: Thu,
|
|
41
|
+
recorded_at: Thu, 17 Sep 2015 11:21:06 GMT
|
|
42
42
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:07 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206277'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: ASCII-8BIT
|
|
45
45
|
string: !binary |-
|
|
@@ -142,5 +142,5 @@ http_interactions:
|
|
|
142
142
|
aG5vbG9neSIsCiAgICAiY29kZSI6ICIwNDAwMzAwMCIsCiAgICAiY29uZmlk
|
|
143
143
|
ZW5jZSI6IDEuMAogIH1dCn0=
|
|
144
144
|
http_version:
|
|
145
|
-
recorded_at: Thu,
|
|
145
|
+
recorded_at: Thu, 17 Sep 2015 11:21:07 GMT
|
|
146
146
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:05 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206278'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: UTF-8
|
|
45
45
|
string: |-
|
|
@@ -53,5 +53,5 @@ http_interactions:
|
|
|
53
53
|
}]
|
|
54
54
|
}
|
|
55
55
|
http_version:
|
|
56
|
-
recorded_at: Thu,
|
|
56
|
+
recorded_at: Thu, 17 Sep 2015 11:21:05 GMT
|
|
57
57
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:21:04 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206282'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: ASCII-8BIT
|
|
45
45
|
string: !binary |-
|
|
@@ -142,5 +142,5 @@ http_interactions:
|
|
|
142
142
|
aG5vbG9neSIsCiAgICAiY29kZSI6ICIwNDAwMzAwMCIsCiAgICAiY29uZmlk
|
|
143
143
|
ZW5jZSI6IDEuMAogIH1dCn0=
|
|
144
144
|
http_version:
|
|
145
|
-
recorded_at: Thu,
|
|
145
|
+
recorded_at: Thu, 17 Sep 2015 11:21:04 GMT
|
|
146
146
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
response:
|
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
|
23
23
|
Server:
|
|
24
24
|
- openresty/1.7.7.2
|
|
25
25
|
Date:
|
|
26
|
-
- Thu,
|
|
26
|
+
- Thu, 17 Sep 2015 11:18:25 GMT
|
|
27
27
|
Content-Type:
|
|
28
28
|
- text/plain; charset=us-ascii
|
|
29
29
|
Transfer-Encoding:
|
|
@@ -34,5 +34,5 @@ http_interactions:
|
|
|
34
34
|
encoding: UTF-8
|
|
35
35
|
string: Authentication parameters missing
|
|
36
36
|
http_version:
|
|
37
|
-
recorded_at: Thu,
|
|
37
|
+
recorded_at: Thu, 17 Sep 2015 11:18:25 GMT
|
|
38
38
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:18:26 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206325'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
body:
|
|
44
44
|
encoding: UTF-8
|
|
45
45
|
string: |-
|
|
@@ -53,5 +53,5 @@ http_interactions:
|
|
|
53
53
|
}]
|
|
54
54
|
}
|
|
55
55
|
http_version:
|
|
56
|
-
recorded_at: Thu,
|
|
56
|
+
recorded_at: Thu, 17 Sep 2015 11:18:26 GMT
|
|
57
57
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,24 +27,24 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:18:27 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
34
|
-
- '
|
|
34
|
+
- '3986'
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206317'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
X-Mashape-Billing:
|
|
44
44
|
- requests=7
|
|
45
45
|
body:
|
|
46
46
|
encoding: UTF-8
|
|
47
|
-
string: '{"text":"
|
|
47
|
+
string: '{"text":"CCTV footage shows the moment a suicide car bomber detonates\n a
|
|
48
48
|
device in Beirut on Tuesday. The incident took place in an area\n of
|
|
49
49
|
support for Hezbollah and left four people dead with many more wounded.\n A
|
|
50
50
|
group calling itself the al-Nusra Front in Lebanon has claimed\n responsibility
|
|
@@ -55,16 +55,16 @@ http_interactions:
|
|
|
55
55
|
Hezbollah and left four people dead with many more wounded.\n A group
|
|
56
56
|
calling itself the al-Nusra Front in Lebanon has claimed\n responsibility
|
|
57
57
|
for the attack saying it was in retaliation for\n Hezbollah''s military
|
|
58
|
-
support of president Bashar al-Assad''s forces in Syria","videos":[],"title":"","feeds":[]}},{"endpoint":"language","result":{"lang":"en","confidence":0.
|
|
58
|
+
support of president Bashar al-Assad''s forces in Syria","videos":[],"title":"","feeds":[]}},{"endpoint":"language","result":{"lang":"en","confidence":0.9999971204673198}},{"endpoint":"entities","result":{"language":"en","entities":{"date":["Tuesday"],"location":["Beirut","Lebanon","Syria"],"keyword":["support
|
|
59
59
|
of president Bashar","support for Hezbollah","support","Hezbollah","suicide","bomber","device","Bashar","president","Beirut","moment","Tuesday","military","responsibility","incident","Lebanon","Front","al-Assad","group","dead"],"organization":["Hezbollah"]}}},{"endpoint":"concepts","result":{"language":"en","concepts":{"http://dbpedia.org/resource/Bashar_al-Assad":{"surfaceForms":[{"string":"Bashar
|
|
60
|
-
al-Assad","score":1.0,"offset":
|
|
61
|
-
Front","score":1.0,"offset":
|
|
62
|
-
- biological and chemical weapons","code":"11001007","confidence":1.0}]}},{"endpoint":"hashtags","result":{"language":"en","hashtags":["#Hezbollah","#
|
|
60
|
+
al-Assad","score":1.0,"offset":402}],"types":["http://dbpedia.org/ontology/Agent","http://www.wikidata.org/entity/Q215627","http://schema.org/Person","http://xmlns.com/foaf/0.1/Person","http://www.wikidata.org/entity/Q5","http://dbpedia.org/ontology/Person"],"support":1139},"http://dbpedia.org/resource/Syria":{"surfaceForms":[{"string":"Syria","score":0.9999997769859554,"offset":430}],"types":["http://dbpedia.org/ontology/Country"],"support":26138},"http://dbpedia.org/resource/Beirut":{"surfaceForms":[{"string":"Beirut","score":0.9999825931459005,"offset":79}],"types":["http://dbpedia.org/ontology/Location","http://schema.org/Place","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/PopulatedPlace","http://www.wikidata.org/entity/Q486972","http://dbpedia.org/ontology/Settlement"],"support":8176},"http://dbpedia.org/resource/Hezbollah":{"surfaceForms":[{"string":"Hezbollah","score":1.0,"offset":154}],"types":["http://dbpedia.org/ontology/PoliticalParty"],"support":5001},"http://dbpedia.org/resource/Al-Nusra_Front":{"surfaceForms":[{"string":"al-Nusra
|
|
61
|
+
Front","score":1.0,"offset":247}],"types":[""],"support":411},"http://dbpedia.org/resource/Closed-circuit_television":{"surfaceForms":[{"string":"CCTV","score":0.9997132750008201,"offset":0}],"types":[""],"support":1724},"http://dbpedia.org/resource/Bomber":{"surfaceForms":[{"string":"bomber","score":0.9524579388652058,"offset":44}],"types":[""],"support":3798},"http://dbpedia.org/resource/Lebanon":{"surfaceForms":[{"string":"Lebanon","score":0.9999999930598733,"offset":265}],"types":["http://dbpedia.org/ontology/Country"],"support":23160}}}},{"endpoint":"classify","result":{"language":"en","categories":[{"label":"defence
|
|
62
|
+
- biological and chemical weapons","code":"11001007","confidence":1.0}]}},{"endpoint":"hashtags","result":{"language":"en","hashtags":["#Hezbollah","#Beirut","#ClosedcircuitTelevision","#Syria","#Lebanon","#AlNusraFront","#CCTV","#Bomber","#BasharAlAssad"]}},{"endpoint":"summarize","result":{"sentences":["The
|
|
63
63
|
incident took place in an area\n of support for Hezbollah and left four
|
|
64
64
|
people dead with many more wounded.","A group calling itself the al-Nusra
|
|
65
65
|
Front in Lebanon has claimed\n responsibility for the attack saying it
|
|
66
66
|
was in retaliation for\n Hezbollah''s military support of president Bashar
|
|
67
67
|
al-Assad''s forces in Syria"]}}]}'
|
|
68
68
|
http_version:
|
|
69
|
-
recorded_at: Thu,
|
|
69
|
+
recorded_at: Thu, 17 Sep 2015 11:18:27 GMT
|
|
70
70
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:18:26 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- text/plain; charset=us-ascii
|
|
33
33
|
Transfer-Encoding:
|
|
@@ -38,5 +38,5 @@ http_interactions:
|
|
|
38
38
|
encoding: UTF-8
|
|
39
39
|
string: Authentication failed
|
|
40
40
|
http_version:
|
|
41
|
-
recorded_at: Thu,
|
|
41
|
+
recorded_at: Thu, 17 Sep 2015 11:18:26 GMT
|
|
42
42
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,7 +27,7 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:18:32 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
@@ -37,9 +37,9 @@ http_interactions:
|
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206303'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
X-Mashape-Billing:
|
|
44
44
|
- requests=7
|
|
45
45
|
body:
|
|
@@ -239,7 +239,7 @@ http_interactions:
|
|
|
239
239
|
Y2guY29tLzIwMTQvMTAvMjAvdGhlLXN1cGVyLXNsaW0ta2luZGxlLXZveWFn
|
|
240
240
|
ZS1pcy1hLWdyZWF0LXRyYXZlbC1jb21wYW5pb24vZmVlZC8iXX19LHsiZW5k
|
|
241
241
|
cG9pbnQiOiJsYW5ndWFnZSIsInJlc3VsdCI6eyJsYW5nIjoiZW4iLCJjb25m
|
|
242
|
-
|
|
242
|
+
aWRlbmNlIjowLjk5OTk5Njc1NjEzODQ3NDR9fSx7ImVuZHBvaW50IjoiZW50
|
|
243
243
|
aXRpZXMiLCJyZXN1bHQiOnsibGFuZ3VhZ2UiOiJlbiIsImVudGl0aWVzIjp7
|
|
244
244
|
Im9yZ2FuaXphdGlvbiI6WyJQZW5ndWluIEJvb2tzIiwiUGVuZ3VpbiJdLCJs
|
|
245
245
|
b2NhdGlvbiI6WyJMQ0QuIiwiRXVyb3BlIl0sImtleXdvcmQiOlsiVm95YWdl
|
|
@@ -290,9 +290,9 @@ http_interactions:
|
|
|
290
290
|
LSBjb21wdXRpbmcgYW5kIGluZm9ybWF0aW9uIHRlY2hub2xvZ3kiLCJjb2Rl
|
|
291
291
|
IjoiMDQwMDMwMDAiLCJjb25maWRlbmNlIjoxLjB9XX19LHsiZW5kcG9pbnQi
|
|
292
292
|
OiJoYXNodGFncyIsInJlc3VsdCI6eyJsYW5ndWFnZSI6ImVuIiwiaGFzaHRh
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
293
|
+
Z3MiOlsiI0VyZWFkZXIiLCIjU3Bpcml0dWFsaXR5IiwiI1Blbmd1aW5Cb29r
|
|
294
|
+
cyIsIiNFYm9vayIsIiNBbGxlbkxhbmUiLCIjVktLcmlzaG5hTWVub24iLCIj
|
|
295
|
+
UGVuZ3VpbkNsYXNzaWNzIiwiIzNHIl19fSx7ImVuZHBvaW50Ijoic3VtbWFy
|
|
296
296
|
aXplIiwicmVzdWx0Ijp7InNlbnRlbmNlcyI6WyJJbiAxOTM1LCBTaXIgQWxs
|
|
297
297
|
ZW4gTGFuZSBhbmQgVi4gSy4gS3Jpc2huYSBNZW5vbiBmb3VuZGVkIFBlbmd1
|
|
298
298
|
aW4gQm9va3MsIGEgY29tcGFueSBkZWRpY2F0ZWQgdG8gcHJvZHVjaW5nIGhp
|
|
@@ -311,5 +311,5 @@ http_interactions:
|
|
|
311
311
|
ZWFkaW5nIGV4cGVyaWVuY2UgYWtpbiB0byB0aHVtYmluZyB0aHJvdWdoIGEg
|
|
312
312
|
UGVuZ3VpbiBDbGFzc2ljLiJdfX1dfQ==
|
|
313
313
|
http_version:
|
|
314
|
-
recorded_at: Thu,
|
|
314
|
+
recorded_at: Thu, 17 Sep 2015 11:18:32 GMT
|
|
315
315
|
recorded_with: VCR 2.9.3
|
|
@@ -12,7 +12,7 @@ http_interactions:
|
|
|
12
12
|
Accept:
|
|
13
13
|
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
|
-
- Aylien Text API Ruby Gem 0.
|
|
15
|
+
- Aylien Text API Ruby Gem 0.4.0
|
|
16
16
|
Content-Type:
|
|
17
17
|
- application/x-www-form-urlencoded
|
|
18
18
|
X-Aylien-Textapi-Application-Id:
|
|
@@ -27,24 +27,24 @@ http_interactions:
|
|
|
27
27
|
Server:
|
|
28
28
|
- openresty/1.7.7.2
|
|
29
29
|
Date:
|
|
30
|
-
- Thu,
|
|
30
|
+
- Thu, 17 Sep 2015 11:18:26 GMT
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/json;charset=UTF-8
|
|
33
33
|
Content-Length:
|
|
34
|
-
- '
|
|
34
|
+
- '3986'
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
X-Ratelimit-Limit:
|
|
38
38
|
- '207000'
|
|
39
39
|
X-Ratelimit-Remaining:
|
|
40
|
-
- '
|
|
40
|
+
- '206324'
|
|
41
41
|
X-Ratelimit-Reset:
|
|
42
|
-
- '
|
|
42
|
+
- '1442534400'
|
|
43
43
|
X-Mashape-Billing:
|
|
44
44
|
- requests=7
|
|
45
45
|
body:
|
|
46
46
|
encoding: UTF-8
|
|
47
|
-
string: '{"text":"
|
|
47
|
+
string: '{"text":"CCTV footage shows the moment a suicide car bomber detonates\n a
|
|
48
48
|
device in Beirut on Tuesday. The incident took place in an area\n of
|
|
49
49
|
support for Hezbollah and left four people dead with many more wounded.\n A
|
|
50
50
|
group calling itself the al-Nusra Front in Lebanon has claimed\n responsibility
|
|
@@ -55,16 +55,16 @@ http_interactions:
|
|
|
55
55
|
Hezbollah and left four people dead with many more wounded.\n A group
|
|
56
56
|
calling itself the al-Nusra Front in Lebanon has claimed\n responsibility
|
|
57
57
|
for the attack saying it was in retaliation for\n Hezbollah''s military
|
|
58
|
-
support of president Bashar al-Assad''s forces in Syria","videos":[],"title":"","feeds":[]}},{"endpoint":"language","result":{"lang":"en","confidence":0.
|
|
58
|
+
support of president Bashar al-Assad''s forces in Syria","videos":[],"title":"","feeds":[]}},{"endpoint":"language","result":{"lang":"en","confidence":0.9999981613101834}},{"endpoint":"entities","result":{"language":"en","entities":{"date":["Tuesday"],"location":["Beirut","Lebanon","Syria"],"keyword":["support
|
|
59
59
|
of president Bashar","support for Hezbollah","support","Hezbollah","suicide","bomber","device","Bashar","president","Beirut","moment","Tuesday","military","responsibility","incident","Lebanon","Front","al-Assad","group","dead"],"organization":["Hezbollah"]}}},{"endpoint":"concepts","result":{"language":"en","concepts":{"http://dbpedia.org/resource/Bashar_al-Assad":{"surfaceForms":[{"string":"Bashar
|
|
60
|
-
al-Assad","score":1.0,"offset":
|
|
61
|
-
Front","score":1.0,"offset":
|
|
62
|
-
- biological and chemical weapons","code":"11001007","confidence":1.0}]}},{"endpoint":"hashtags","result":{"language":"en","hashtags":["#Hezbollah","#
|
|
60
|
+
al-Assad","score":1.0,"offset":402}],"types":["http://dbpedia.org/ontology/Agent","http://www.wikidata.org/entity/Q215627","http://schema.org/Person","http://xmlns.com/foaf/0.1/Person","http://www.wikidata.org/entity/Q5","http://dbpedia.org/ontology/Person"],"support":1139},"http://dbpedia.org/resource/Syria":{"surfaceForms":[{"string":"Syria","score":0.9999997769859554,"offset":430}],"types":["http://dbpedia.org/ontology/Country"],"support":26138},"http://dbpedia.org/resource/Beirut":{"surfaceForms":[{"string":"Beirut","score":0.9999825931459005,"offset":79}],"types":["http://dbpedia.org/ontology/Location","http://schema.org/Place","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/PopulatedPlace","http://www.wikidata.org/entity/Q486972","http://dbpedia.org/ontology/Settlement"],"support":8176},"http://dbpedia.org/resource/Hezbollah":{"surfaceForms":[{"string":"Hezbollah","score":1.0,"offset":154}],"types":["http://dbpedia.org/ontology/PoliticalParty"],"support":5001},"http://dbpedia.org/resource/Al-Nusra_Front":{"surfaceForms":[{"string":"al-Nusra
|
|
61
|
+
Front","score":1.0,"offset":247}],"types":[""],"support":411},"http://dbpedia.org/resource/Closed-circuit_television":{"surfaceForms":[{"string":"CCTV","score":0.9997132750008201,"offset":0}],"types":[""],"support":1724},"http://dbpedia.org/resource/Bomber":{"surfaceForms":[{"string":"bomber","score":0.9524579388652058,"offset":44}],"types":[""],"support":3798},"http://dbpedia.org/resource/Lebanon":{"surfaceForms":[{"string":"Lebanon","score":0.9999999930598733,"offset":265}],"types":["http://dbpedia.org/ontology/Country"],"support":23160}}}},{"endpoint":"classify","result":{"language":"en","categories":[{"label":"defence
|
|
62
|
+
- biological and chemical weapons","code":"11001007","confidence":1.0}]}},{"endpoint":"hashtags","result":{"language":"en","hashtags":["#Hezbollah","#Beirut","#ClosedcircuitTelevision","#Syria","#Lebanon","#AlNusraFront","#CCTV","#Bomber","#BasharAlAssad"]}},{"endpoint":"summarize","result":{"sentences":["The
|
|
63
63
|
incident took place in an area\n of support for Hezbollah and left four
|
|
64
64
|
people dead with many more wounded.","A group calling itself the al-Nusra
|
|
65
65
|
Front in Lebanon has claimed\n responsibility for the attack saying it
|
|
66
66
|
was in retaliation for\n Hezbollah''s military support of president Bashar
|
|
67
67
|
al-Assad''s forces in Syria"]}}]}'
|
|
68
68
|
http_version:
|
|
69
|
-
recorded_at: Thu,
|
|
69
|
+
recorded_at: Thu, 17 Sep 2015 11:18:27 GMT
|
|
70
70
|
recorded_with: VCR 2.9.3
|