Достъп до ресурсни данни чрез уеб 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: '22fe3fb1-fa31-4437-8ea4-4795809d79be', // 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=22fe3fb1-fa31-4437-8ea4-4795809d79be&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()