เข้าถึงทรัพยากรข้อมูลผ่าน API ของเว็บด้วยภาษาสอบถามที่ทรงพลัง. Further information in the main CKAN Data API and DataStore documentation.
Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API
สร้าง | https://dani.kolrada.gov.ua/th/api/3/action/datastore_create |
---|---|
ปรับปรุง/เพิ่ม | https://dani.kolrada.gov.ua/th/api/3/action/datastore_upsert |
เรียกดูข้อมูล | https://dani.kolrada.gov.ua/th/api/3/action/datastore_search |
เรียกดูข้อมูล (ผ่าน SQL) | https://dani.kolrada.gov.ua/th/api/3/action/datastore_search_sql |
https://dani.kolrada.gov.ua/th/api/3/action/datastore_search?resource_id=a24e0bb8-d0ff-4dec-a5d4-445d7f6e2867&limit=5
https://dani.kolrada.gov.ua/th/api/3/action/datastore_search?resource_id=a24e0bb8-d0ff-4dec-a5d4-445d7f6e2867&q=jones
https://dani.kolrada.gov.ua/th/api/3/action/datastore_search_sql?sql=SELECT * from "a24e0bb8-d0ff-4dec-a5d4-445d7f6e2867" WHERE title LIKE 'jones'
คำขอแบบ ajax (JSONP) พื้นฐาน เพื่อร้องขอข้อมูลผ่าน API โดยใช้ jQuery
var data = { resource_id: 'a24e0bb8-d0ff-4dec-a5d4-445d7f6e2867', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://dani.kolrada.gov.ua/th/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://dani.kolrada.gov.ua/th/api/3/action/datastore_search?resource_id=a24e0bb8-d0ff-4dec-a5d4-445d7f6e2867&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()