Run this command to install the SDK:
npm install cloudmersive-nlp-api-client --save
Or add this snippet to your package.json:
"dependencies": { "cloudmersive-nlp-api-client": "^2.1.1" }
Run this command to install the SDK:
npm install cloudmersive-nlp-api-client --save
Or add this snippet to your package.json:
"dependencies": { "cloudmersive-nlp-api-client": "^2.1.1" }
var CloudmersiveNlpApiClient = require('cloudmersive-nlp-api-client');
var defaultClient = CloudmersiveNlpApiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
var apiInstance = new CloudmersiveNlpApiClient.WordsApi();
var input = "input_example"; // String | String to process
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.wordsGetWordsJson(input, callback);
Run this command to install the SDK:
pip install cloudmersive-nlp-api-client
from __future__ import print_function
import time
import cloudmersive_nlp_api_client
from cloudmersive_nlp_api_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: Apikey
configuration = cloudmersive_nlp_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = cloudmersive_nlp_api_client.WordsApi(cloudmersive_nlp_api_client.ApiClient(configuration))
input = 'input_example' # str | String to process
try:
# Get words in input string (JSON)
api_response = api_instance.words_get_words_json(input)
pprint(api_response)
except ApiException as e:
print("Exception when calling WordsApi->words_get_words_json: %s\n" % e)
Run this command to install the SDK:
Install-Package Cloudmersive.APIClient.NET.NLP -Version 4.1.0
Run this command to install the SDK:
Install-Package Cloudmersive.APIClient.NETCore.NLP -Version 2.1.3
using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NET.NLP.Api;
using Cloudmersive.APIClient.NET.NLP.Client;
using Cloudmersive.APIClient.NET.NLP.Model;
namespace Example
{
public class WordsGetWordsJsonExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new WordsApi();
var input = input_example; // string | String to process
try
{
// Get words in input string (JSON)
GetWordsJsonResponse result = apiInstance.WordsGetWordsJson(input);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling WordsApi.WordsGetWordsJson: " + e.Message );
}
}
}
}
using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NETCore.NLP.Api;
using Cloudmersive.APIClient.NETCore.NLP.Client;
using Cloudmersive.APIClient.NETCore.NLP.Model;
namespace Example
{
public class WordsGetWordsJsonExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new WordsApi();
var input = input_example; // string | String to process
try
{
// Get words in input string (JSON)
GetWordsJsonResponse result = apiInstance.WordsGetWordsJson(input);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling WordsApi.WordsGetWordsJson: " + e.Message );
}
}
}
}
To install with Maven, add a reference to the repository in pom.xml:
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
And add a reference to the dependency in pom.xml:
<dependencies> <dependency> <groupId>com.github.Cloudmersive</groupId> <artifactId>Cloudmersive.APIClient.Java</artifactId> <version>v4.25</version> </dependency> </dependencies>
To install with Gradle, add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
And add the dependency in build.gradle:
dependencies { implementation 'com.github.Cloudmersive:Cloudmersive.APIClient.Java:v4.25' }
// Import classes:
//import com.cloudmersive.client.invoker.ApiClient;
//import com.cloudmersive.client.invoker.ApiException;
//import com.cloudmersive.client.invoker.Configuration;
//import com.cloudmersive.client.invoker.auth.*;
//import com.cloudmersive.client.WordsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) defaultClient.getAuthentication("Apikey");
Apikey.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.setApiKeyPrefix("Token");
WordsApi apiInstance = new WordsApi();
String input = "input_example"; // String | String to process
try {
GetWordsJsonResponse result = apiInstance.wordsGetWordsJson(input);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WordsApi#wordsGetWordsJson");
e.printStackTrace();
}
Run this command to install the SDK:
composer require cloudmersive/cloudmersive_nlp_api_client
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Apikey
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY');
$apiInstance = new Swagger\Client\Api\WordsApi(
new GuzzleHttp\Client(),
$config
);
$input = "input_example"; // string | String to process
try {
$result = $apiInstance->wordsGetWordsJson($input);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling WordsApi->wordsGetWordsJson: ', $e->getMessage(), PHP_EOL;
}
?>
Add the Objective-C client to your Podfile:
pod 'CloudmersiveNLPApiClient', '~> 1.0'
CMDefaultConfiguration *apiConfig = [CMDefaultConfiguration sharedConfig];
// Configure API key authorization: (authentication scheme: Apikey)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Apikey"];
NSString* input = input_example; // String to process
CMWordsApi*apiInstance = [[CMWordsApi alloc] init];
// Get words in input string (JSON)
[apiInstance wordsGetWordsJsonWithInput:input
completionHandler: ^(CMGetWordsJsonResponse* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling CMWordsApi->wordsGetWordsJson: %@", error);
}
}];
Add the Ruby client to your Gemfile:
gem 'cloudmersive-nlp-api-client', '~> 3.0.3'
# load the gem
require 'cloudmersive-nlp-api-client'
# setup authorization
CloudmersiveNlpApiClient.configure do |config|
# Configure API key authorization: Apikey
config.api_key['Apikey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Apikey'] = 'Bearer'
end
api_instance = CloudmersiveNlpApiClient::WordsApi.new
input = "input_example" # String | String to process
begin
#Get words in input string (JSON)
result = api_instance.words_get_words_json(input)
p result
rescue CloudmersiveNlpApiClient::ApiError => e
puts "Exception when calling WordsApi->words_get_words_json: #{e}"
end
Install libcurl in your C/C++ project:
libcurl/7.75.0
This code snippet uses the built-in JavaScript XHR request capability
Run this command to install jQuery:
bower install jquery