Достъп до ресурсни данни чрез уеб 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: '8fd0075a-381a-4101-844f-9edaf2b1f453', // 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=8fd0075a-381a-4101-844f-9edaf2b1f453&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()