Достъп до ресурсни данни чрез уеб API със силна поддръжка на заявки.. Further information in the main CKAN Data API and DataStore documentation.
Това Data API е достъпно само чрез следните действия от CKAN API за действия.
Създаване | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_create |
---|---|
Обновяване / Вмъкване | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_upsert |
Заявка | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search |
Обикновена заявка по технологията ajax (JSONP) към API на данните чрез jQuery.
var data = { resource_id: 'fb74357b-eced-4a7f-9b8b-ffe41114e087', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search?limit=5&resource_id=fb74357b-eced-4a7f-9b8b-ffe41114e087&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()