Достъп до ресурсни данни чрез уеб 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: '9800984b-cda4-4100-8e4b-7638c1b4ca57', // 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=9800984b-cda4-4100-8e4b-7638c1b4ca57&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()