如何在PHP中使用fundamerica API?

时间:2015-05-02 10:17:18

标签: php api curl

我一直坚持使用PHP的fundamerica API。我知道卷曲和其他工作人员,但没有得到如何使用卷曲的API。 fundamerica API代码的结构如下: -

assign {datafile[0], datafile[1], ...} = {16'b0, 16'b0, ...};

我没有得到如何使用这个代码与PHP。您可以在以下网址上查看文档:{​​{3}}

1 个答案:

答案 0 :(得分:0)

以下是执行fundamerica API的代码:

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, "https://sandbox.fundamerica.com/api/ach_authorizations/agreement_html");

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);  
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");  


curl_setopt($ch, CURLOPT_USERPWD, "e_CdE6BtTcuqF2lAIqSEKa6vzl39U_EN:");
curl_setopt($ch, CURLOPT_HEADER, 'Accept: application/json');

$output = curl_exec($ch);