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.SegmentationApi();
var input = new CloudmersiveNlpApiClient.GetWordsRequest(); // GetWordsRequest | String to process
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.segmentationGetWords(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.SegmentationApi(cloudmersive_nlp_api_client.ApiClient(configuration))
input = cloudmersive_nlp_api_client.GetWordsRequest() # GetWordsRequest | String to process
try:
# Get words in input string
api_response = api_instance.segmentation_get_words(input)
pprint(api_response)
except ApiException as e:
print("Exception when calling SegmentationApi->segmentation_get_words: %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 SegmentationGetWordsExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new SegmentationApi();
var input = new GetWordsRequest(); // GetWordsRequest | String to process
try
{
// Get words in input string
GetWordsResponse result = apiInstance.SegmentationGetWords(input);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling SegmentationApi.SegmentationGetWords: " + 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 SegmentationGetWordsExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new SegmentationApi();
var input = new GetWordsRequest(); // GetWordsRequest | String to process
try
{
// Get words in input string
GetWordsResponse result = apiInstance.SegmentationGetWords(input);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling SegmentationApi.SegmentationGetWords: " + 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.SegmentationApi;
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");
SegmentationApi apiInstance = new SegmentationApi();
GetWordsRequest input = new GetWordsRequest(); // GetWordsRequest | String to process
try {
GetWordsResponse result = apiInstance.segmentationGetWords(input);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SegmentationApi#segmentationGetWords");
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\SegmentationApi(
new GuzzleHttp\Client(),
$config
);
$input = new \Swagger\Client\Model\GetWordsRequest(); // \Swagger\Client\Model\GetWordsRequest | String to process
try {
$result = $apiInstance->segmentationGetWords($input);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SegmentationApi->segmentationGetWords: ', $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"];
CMGetWordsRequest* input = [[CMGetWordsRequest alloc] init]; // String to process
CMSegmentationApi*apiInstance = [[CMSegmentationApi alloc] init];
// Get words in input string
[apiInstance segmentationGetWordsWithInput:input
completionHandler: ^(CMGetWordsResponse* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling CMSegmentationApi->segmentationGetWords: %@", 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::SegmentationApi.new
input = CloudmersiveNlpApiClient::GetWordsRequest.new # GetWordsRequest | String to process
begin
#Get words in input string
result = api_instance.segmentation_get_words(input)
p result
rescue CloudmersiveNlpApiClient::ApiError => e
puts "Exception when calling SegmentationApi->segmentation_get_words: #{e}"
end
SwagSegmentationApi api = new SwagSegmentationApi();
SwagClient client = api.getClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) client.getAuthentication('Apikey');
Apikey.setApiKey('YOUR API KEY');
Map<String, Object> params = new Map<String, Object>{
'input' => SwagGetWordsRequest.getExample()
};
try {
// cross your fingers
SwagGetWordsResponse result = api.segmentationGetWords(params);
System.debug(result);
} catch (Swagger.ApiException e) {
// ...handle your exceptions
}
Install libcurl in your C/C++ project:
libcurl/7.75.0
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(curl, CURLOPT_URL, "https://api.cloudmersive.com/nlp-v2/segmentation/words");
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/x-www-form-urlencoded");
headers = curl_slist_append(headers, "Apikey: YOUR-API-KEY-HERE");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
const char *data = "InputText=%3Cstring%3E";
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
res = curl_easy_perform(curl);
}
curl_easy_cleanup(curl);
curl --location --request POST 'https://api.cloudmersive.com/nlp-v2/segmentation/words' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Apikey: YOUR-API-KEY-HERE' \
--data-urlencode 'InputText=<string>'
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif
var semaphore = DispatchSemaphore (value: 0)
let parameters = "InputText=%3Cstring%3E"
let postData = parameters.data(using: .utf8)
var request = URLRequest(url: URL(string: "https://api.cloudmersive.com/nlp-v2/segmentation/words")!,timeoutInterval: Double.infinity)
request.addValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
request.addValue("YOUR-API-KEY-HERE", forHTTPHeaderField: "Apikey")
request.httpMethod = "POST"
request.httpBody = postData
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
semaphore.signal()
return
}
print(String(data: data, encoding: .utf8)!)
semaphore.signal()
}
task.resume()
semaphore.wait()
This code snippet uses the built-in JavaScript XHR request capability
Run this command to install jQuery:
bower install jquery
var data = "InputText=%3Cstring%3E";
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function() {
if(this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("POST", "https://api.cloudmersive.com/nlp-v2/segmentation/words");
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.setRequestHeader("Apikey", "YOUR-API-KEY-HERE");
xhr.send(data);
var settings = {
"url": "https://api.cloudmersive.com/nlp-v2/segmentation/words",
"method": "POST",
"timeout": 0,
"headers": {
"Content-Type": "application/x-www-form-urlencoded",
"Apikey": "YOUR-API-KEY-HERE"
},
"data": {
"InputText": "<string>"
}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.cloudmersive.com/nlp-v2/segmentation/words"
method := "POST"
payload := strings.NewReader("InputText=%3Cstring%3E")
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.Header.Add("Apikey", "YOUR-API-KEY-HERE")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}