Text-Processing

FREEMIUM
Durch Jacob | Aktualisiert a month ago | Text Analysis
Popularität

9.5 / 10

Latenz

318ms

Service Level

100%

Health Check

N/A

Zurück zu allen Diskussionen

Sentiment Analysis

Rapid account: Massblurb
Massblurb
9 years ago

Hi,
This is Tushar
I’m sending the following request from my php code

$response = Unirest\Request::post(“https://japerk-text-processing.p.mashape.com/sentiment/”,
array(
“X-Mashape-Key” => <My key>,
“Content-Type” => “application/x-www-form-urlencoded”,
“Accept” => “application/json”
),
array(
“language” => “english”,
“text” => “great movie”
)
);

and getting the code 400 (Form Validation Errors text: This field is required.) in response.
Can you please help?

Rapid account: Massblurb
Massblurb Commented 9 years ago

Hi,
Could not use the traditional php request at that time so had resolved the problem by using a curl request as follows -
$response = exec(“curl -X POST --include ‘https://japerk-text-processing.p.mashape.com/sentiment/
-H 'X-Mashape-Key: ’
-H ‘Content-Type: application/x-www-form-urlencoded’
-H ‘Accept: application/json’
-d ‘language=english’
-d 'text=”. $tweet ."’");

Rapid account: Japerk
japerk Commented 9 years ago

I’m not familiar with PHP or the PHP Unirest API, but it looks like the second array is not being sent as the POST data. Maybe it needs to be sent as another parameter or argument.

Nehmen Sie an der Diskussion teil - fügen Sie unten einen Kommentar hinzu:

Anmelden / Registrieren, um neue Kommentare zu veröffentlichen