apiV1PublicGet
/api/v1/public
Usage and SDK Samples
curl -X GET "https://api.apieco.ir/g02/api/v1/public?link="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LinkApi;
import java.io.File;
import java.util.*;
public class LinkApiExample {
public static void main(String[] args) {
LinkApi apiInstance = new LinkApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String link = link_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
try {
inline_response_200 result = apiInstance.apiV1PublicGet(apiecoKey, link);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LinkApi#apiV1PublicGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.LinkApi;
public class LinkApiExample {
public static void main(String[] args) {
LinkApi apiInstance = new LinkApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String link = link_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
try {
inline_response_200 result = apiInstance.apiV1PublicGet(apiecoKey, link);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LinkApi#apiV1PublicGet");
e.printStackTrace();
}
}
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *link = link_example; // آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
LinkApi *apiInstance = [[LinkApi alloc] init];
[apiInstance apiV1PublicGetWith:apiecoKey
link:link
completionHandler: ^(inline_response_200 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var _ = require('____');
var api = new _.LinkApi()
var apiecoKey = apiecoKey_example; // {String} apikey for use API
var link = link_example; // {String} آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.apiV1PublicGet(apiecoKey, link, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class apiV1PublicGetExample
{
public void main()
{
var apiInstance = new LinkApi();
var apiecoKey = apiecoKey_example; // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
var link = link_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
try
{
inline_response_200 result = apiInstance.apiV1PublicGet(apiecoKey, link);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LinkApi.apiV1PublicGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\LinkApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$link = link_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
try {
$result = $api_instance->apiV1PublicGet($apiecoKey, $link);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LinkApi->apiV1PublicGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LinkApi;
my $api_instance = WWW::SwaggerClient::LinkApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $link = link_example; # String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
eval {
my $result = $api_instance->apiV1PublicGet(apiecoKey => $apiecoKey, link => $link);
print Dumper($result);
};
if ($@) {
warn "Exception when calling LinkApi->apiV1PublicGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.LinkApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
link = link_example # String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
try:
api_response = api_instance.api_v1_public_get(apiecoKey, link)
pprint(api_response)
except ApiException as e:
print("Exception when calling LinkApi->apiV1PublicGet: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
apieco-key* |
String
apikey for use API
Required
|
Query parameters
Name | Description |
---|---|
link* |
String
آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
Required
|