What are peoples thoughts on adding functionality to push data back up to CKAN (data.gov.au) Some sample php code: ``` $ch = curl_init(); curl_setopt_array($ch, array(CURLOPT_HTTPHEADER => array('Expect: ', 'Authorization: '.rawurlencode($this->api_key), 'X-CKAN-API-Key: '.rawurlencode($this->api_key)), CURLOPT_HEADER => FALSE, CURLOPT_USERAGENT => "CKAN PHP Updater", CURLOPT_URL => $this->ckan_base_url."/api/action/package_create", CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => json_encode($dataset_create_vars), CURLOPT_RETURNTRANSFER => TRUE)); $response = curl_exec($ch); curl_close($ch); ``` The next question would be how does the data get formatted to be pushed back up?
What are peoples thoughts on adding functionality to push data back up to CKAN (data.gov.au)
Some sample php code:
The next question would be how does the data get formatted to be pushed back up?