Skip to content

mehmetaydogduu/kargotakip-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

kargotakip-examples

Tracking service usage examples (kargonuzvar.com)

The documention is here

Replace the email and password with yours!

Get All Shipments

  • C
CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD");

CURLcode ret = curl_easy_perform(hnd);
  • C#
var client = new RestClient("http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
  • Go
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
  • Java
HttpResponse<String> response = Unirest.get("http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD")
  .asString();
  • Javascript
var data = null;

var xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open("GET", "http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD");

xhr.send(data);
// Or if you are using Jquery
var settings = {
  "async": true,
  "crossDomain": true,
  "url": "http://kargotakip.herokuapp.com/shipments.json?email=YOUR-EMAIL&password=PASSWORD",
  "method": "GET",
  "headers": {}
}

$.ajax(settings).done(function (response) {
  console.log(response);
});
  • Python
import requests

url = "http://kargotakip.herokuapp.com/shipments.json"

querystring = {"email":"your_email_address","password":"your_password"}

payload = ""
response = requests.request("GET", url, data=payload, params=querystring)

print(response.text)

About

Track your packets on carriers in Turkey

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages