apiQrCodeGet
/api/qr-code
Usage and SDK Samples
curl -X GET "https://api.apieco.ir/qr-code/api/qr-code?d=&e=&t="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.QrCodeApi;
import java.io.File;
import java.util.*;
public class QrCodeApiExample {
public static void main(String[] args) {
QrCodeApi apiInstance = new QrCodeApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String d = d_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
String e = e_example; // String | سطح دقت رمزینه l-m-q-h
String t = t_example; // String | قالب خروجی رمزینه j=jpg p=png
try {
apiInstance.apiQrCodeGet(apiecoKey, d, e, t);
} catch (ApiException e) {
System.err.println("Exception when calling QrCodeApi#apiQrCodeGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.QrCodeApi;
public class QrCodeApiExample {
public static void main(String[] args) {
QrCodeApi apiInstance = new QrCodeApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String d = d_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
String e = e_example; // String | سطح دقت رمزینه l-m-q-h
String t = t_example; // String | قالب خروجی رمزینه j=jpg p=png
try {
apiInstance.apiQrCodeGet(apiecoKey, d, e, t);
} catch (ApiException e) {
System.err.println("Exception when calling QrCodeApi#apiQrCodeGet");
e.printStackTrace();
}
}
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *d = d_example; // آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
String *e = e_example; // سطح دقت رمزینه l-m-q-h (optional)
String *t = t_example; // قالب خروجی رمزینه j=jpg p=png (optional)
QrCodeApi *apiInstance = [[QrCodeApi alloc] init];
[apiInstance apiQrCodeGetWith:apiecoKey
d:d
e:e
t:t
completionHandler: ^(NSError* error) {
if (error) {
NSLog(@"Error: %@", error);
}
}];
var QrCode = require('qr_code');
var api = new QrCode.QrCodeApi()
var apiecoKey = apiecoKey_example; // {String} apikey for use API
var d = d_example; // {String} آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
var opts = {
'e': e_example, // {String} سطح دقت رمزینه l-m-q-h
't': t_example // {String} قالب خروجی رمزینه j=jpg p=png
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
api.apiQrCodeGet(apiecoKey, d, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class apiQrCodeGetExample
{
public void main()
{
var apiInstance = new QrCodeApi();
var apiecoKey = apiecoKey_example; // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
var d = d_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
var e = e_example; // String | سطح دقت رمزینه l-m-q-h (optional)
var t = t_example; // String | قالب خروجی رمزینه j=jpg p=png (optional)
try
{
apiInstance.apiQrCodeGet(apiecoKey, d, e, t);
}
catch (Exception e)
{
Debug.Print("Exception when calling QrCodeApi.apiQrCodeGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\QrCodeApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$d = d_example; // String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
$e = e_example; // String | سطح دقت رمزینه l-m-q-h
$t = t_example; // String | قالب خروجی رمزینه j=jpg p=png
try {
$api_instance->apiQrCodeGet($apiecoKey, $d, $e, $t);
} catch (Exception $e) {
echo 'Exception when calling QrCodeApi->apiQrCodeGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::QrCodeApi;
my $api_instance = WWW::SwaggerClient::QrCodeApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $d = d_example; # String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
my $e = e_example; # String | سطح دقت رمزینه l-m-q-h
my $t = t_example; # String | قالب خروجی رمزینه j=jpg p=png
eval {
$api_instance->apiQrCodeGet(apiecoKey => $apiecoKey, d => $d, e => $e, t => $t);
};
if ($@) {
warn "Exception when calling QrCodeApi->apiQrCodeGet: $@\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.QrCodeApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
d = d_example # String | آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
e = e_example # String | سطح دقت رمزینه l-m-q-h (optional)
t = t_example # String | قالب خروجی رمزینه j=jpg p=png (optional)
try:
api_instance.api_qr_code_get(apiecoKey, d, e=e, t=t)
except ApiException as e:
print("Exception when calling QrCodeApi->apiQrCodeGet: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
apieco-key* |
String
apikey for use API
Required
|
Query parameters
Name | Description |
---|---|
d* |
String
آدرس لینکی را که میخواهید کوتاه کنید قرار دهید.
Required
|
e |
String
سطح دقت رمزینه l-m-q-h
|
t |
String
قالب خروجی رمزینه j=jpg p=png
|