PHP code example of klangoo / magnetapiclient.php
1. Go to this page and download the library: Download klangoo/magnetapiclient.php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
klangoo / magnetapiclient.php example snippets
// composer autoload
sing composer
// $ENDPOINT = "https://nlp.klangoo.com/Service.svc";
$CALK = "enter your calk here";
$SECRET_KEY = "enter your secret key here";
$client = new MagnetAPIClient($ENDPOINT, $CALK, $SECRET_KEY);
$request = array("text" => "Real Madrid transfer news",
"lang" => "en",
"format" => "json");
$json = $client->CallWebMethod("ProcessDocument", $request, "POST");
bash
composer