1. 程式人生 > >金數據表單接口請求(php)

金數據表單接口請求(php)

array ins type 制作 分享 shu ext ray rmi

金數據是一個在線表單制作工具,功能十分強大,同時為開發者提供了金數據開發平臺

現根據自己的開發經歷分享下php語言請求金數據接口方法

開發平臺提供以下兩個主要接口 (其中APIKEYAPISECRET從個人中心獲取),接口都是基於HTTP BASIC驗證

一、獲取某表單接口(已知某表單id根據id獲取其包含的字段)

參考代碼如下:

$url = ‘https://APIKEY:APISECRET@jinshuju.net/api/v1/forms/‘.FORMID;
$res = file_get_contents($url);
return json_decode($res,true
);

二、填寫某表單(已知某表單id和字段列表)

參考代碼如下:

$url = ‘https://APIKEY:APISECRET@jinshuju.net/api/v1/forms/‘.FORMID;
$data = array(
      ‘field_1‘ => ‘XXX‘,
      ‘field_4‘ => ‘XXX‘,
);
$query = http_build_query($data);
$options[‘http‘] = array(
       ‘timeout‘=>30,
       ‘method‘ => ‘POST‘,
       ‘header‘ => ‘Content-type:application/x-www-form-urlencoded‘,
       ‘content‘ => $query
); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return json_decode($result,true);

金數據表單接口請求(php)