Document Similarity

부분 유료
분류별 TextMiner | 업데이트됨 16일 전 | Data
인기

0 / 10

지연 시간

13ms

서비스 수준

0%

Health Check

N/A

모든 토론으로 돌아가기

Bad Request

Rapid account: Lukemunn
lukemunn
7년 전

Have tested using PHP with Unirest, PHP with CURL and CURL tester with Hurl.it

All receive the same response,

Bad Request
The browser (or proxy) sent a request that this server could not understand.

This is using the stock example code from the Documentation page. Either there is something wrong with this API, or something missing from the documentation.

Rapid account: Textanalysis
textanalysis Commented 7년 전

close it

Rapid account: Textanalysis
textanalysis Commented 7년 전

maybe you have used it more than the limit of the api

Rapid account: Lukemunn
lukemunn Commented 7년 전

I also got 400 Bad Request using your code examples with my API key as well.

Either my API key is getting blocked - in which case a more specific error code would be helpful.

Or there’s something else wrong, perhaps with the Unirest library integration?

Have you got a full example in PHP that works?

Rapid account: Textanalysis
textanalysis Commented 7년 전

I’m not familar with PHP, so test it on the mashape website, and got the 200 response:

// These code snippets use an open-source library. http://unirest.io/php
$response = Unirest\Request::post(“https://textanalysis-document-similarity-v1.p.mashape.com/document-similarity”,
array(
“X-Mashape-Key” => “…”,
“Content-Type” => “application/x-www-form-urlencoded”,
“Accept” => “application/json”
),
array(
“text1” => “Deep learning is a set of algorithms in machine learning that attempt to model high-level abstractions in data by using model architectures composed of multiple non-linear transformations.”,
“text2” => “Machine learning is a scientific discipline that explores the construction and study of algorithms that can learn from data.”
)
);

Rapid account: Textanalysis
textanalysis Commented 7년 전

I have test it with curl, and get the 200 ok response:

curl -X POST --include ‘https://textanalysis-document-similarity-v1.p.mashape.com/document-similarity’ \

-H ‘X-Mashape-Key: YourAPIKey’
-H ‘Content-Type: application/x-www-form-urlencoded’
-H ‘Accept: application/json’
-d ‘text1=Deep learning is a set of algorithms in machine learning that attempt to model high-level abstractions in data by using model architectures composed of multiple non-linear transformations.’
-d ‘text2=Machine learning is a scientific discipline that explores the construction and study of algorithms that can learn from data.’

HTTP/1.1 200 OK
Content-Type: application/json
Date: Tue, 21 Feb 2017 02:52:30 GMT
Server: Mashape/5.0.6
Content-Length: 26
Connection: keep-alive

{
“similarity”: 0.7179
}

Rapid account: Lukemunn
lukemunn Commented 7년 전

<?php

require_once ‘unirest-php/src/Unirest.php’;

// These code snippets use an open-source library. http://unirest.io/php

$response = Unirest\Request::post(“https://textanalysis-document-similarity-v1.p.mashape.com/document-similarity”,
array(
“X-Mashape-Key” => " — ",
“Content-Type” => “application/x-www-form-urlencoded”,
“Accept” => “application/json”
),
array(
“text1” => “Deep learning is a set of algorithms in machine learning that attempt to model high-level abstractions in data by using model architectures composed of multiple non-linear transformations.”,
“text2” => “Machine learning is a scientific discipline that explores the construction and study of algorithms that can learn from data.”
)
);

echo $response;

?>

Rapid account: Textanalysis
textanalysis Commented 7년 전

can you give me the example you test? or you can test it on the demo first: http://documentsimilarity.com/document-similarity-demo

아래에 의견을 추가하고 토론에 참여하세요.

새 댓글을 게시하려면 로그인 / 가입