调用 REST API 以使用 URL 和参数从网站检索数据


Calling REST API to retrieve data from a website using URL and parameters

嗨,我必须使用 url 和登录参数以及一些 XML 参数作为输入使用 PHP 从网站获取信息。我是任何 API 调用的新手,所以请解释我如何在我的 PHP 代码中使用这些参数并向服务器发出请求以获取信息当我在 SOAP UI 中使用它们时,我可以得到演示结果,我需要在 PHP 中构建相同的结果。

https://transact-prelive.litle.com/vap/communicator/online
Username: u82917418420715660 
Password: dENteSXnXwfqKHF 
Merchant Id: 01183990
<litleOnlineRequest version="9.4" xmlns="http://www.litle.com/schema" merchantId="01183990">
    <authentication>
        <user>u82917418420715660</user>
        <password>dENteSXnXwfqKHF</password>
    </authentication>
    <authorization id="834262" reportGroup="ABC Division" customerId="038945">
        <orderId>65347567</orderId>
        <amount>40000</amount>
        <orderSource>3dsAuthenticated</orderSource>
        <billToAddress>
            <name>John Smith</name>
            <addressLine1>100 Main St</addressLine1>
            <city>Boston</city>
            <state>MA</state>
            <zip>12345</zip>
            <email>jsmith@someaddress.com</email>
            <phone>555-123-4567</phone>
        </billToAddress>
        <card>
        <type>VI</type>
        <number>4000000000000001</number>
        <expDate>1209</expDate>
        <cardValidationNum>555</cardValidationNum>
        </card>
        <cardholderAuthentication>
            <authenticationValue></authenticationValue>
            <authenticationTransactionId></authenticationTransactionId>
        </cardholderAuthentication>
    </authorization>
</litleOnlineRequest>

您可以使用 nusoap 库将 SOAP 与 PHP 一起使用。下面是如何使用它的示例。它与您的查询类似。

        $this->load->library("lib_nusoap");
        $wsdl = "https://transact-prelive.litle.com/vap/communicator/online";
        $client = new nusoap_client($wsdl, 'wsdl');
        //$client->setCredentials($api_username,$api_password);
        $error = $client->getError();
        if ($error)
        {
            echo "'nSOAP Error'n".$error."'n";
            return false;
        }
        else
        {
            $params = array ('user' => "u82917418420715660 ", 'Password' => "dENteSXnXwfqKHF "); 
            $result = $client->call('retrive', $params);
            if ($client->fault)
            {
                print_r($result);
                print $client->fault;
            }
            else
            {
                $result_arr = json_decode($result, true);
            }    
        }
        print_r($result_arr);

Nusoap 库将处理 CURL API 调用。