Download the PHP package klangoo/magnetapiclient.php without Composer
On this page you can find all versions of the php package klangoo/magnetapiclient.php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download klangoo/magnetapiclient.php
More information about klangoo/magnetapiclient.php
Files in klangoo/magnetapiclient.php
Package magnetapiclient.php
Short Description Magnet API Client for PHP
License MIT
Homepage https://github.com/Klangoo/MagnetApiClient.PHP
Informations about the package magnetapiclient.php
This library allows you to easily use the Magnet API via PHP.
Table of Contents
- About
- Installation
- Usage
About
Klangoo NLP API is a natural language processing (NLP) service that uses the rule-based paradigm and machine learning to recognize the aboutness of text. The service recognizes the category of the text, extracts key disambiguated topics, places, people, brands, events, and 41 other types of names; analyzes text using tokenization, parts of speech, parsing, word sense disambiguation, named entity recognition; and automatically finds the relatedness score between documents.
Installation
Prerequisites
- This library is compatible with PHP version 5.3 and later.
- An API Key Provided by Klangoo
- An API Secret Provided by Klangoo
Install
With composer (Recommended)
Install the package via Composer:
Without composer
If you don't use Composer, you can download the package and include it in your code.
Usage
This quick start tutorial will show you how to process a text.
Initialize the client
To begin, you will need to initialize the client. In order to do this you will need your API Key CALK and Secret Key. You can find both on your Klangoo account.
Known Issues/Fixes
Curl SSL certificate problem
Error:
Curl error: SSL certificate problem: unable to get local issuer certificate
Solution:
- Download certificate bundle cacert.pem
- Add/Update the following lines in php.ini:
curl.cainfo="/cacert.pem"
openssl.cafile="/cacert.pem"