1

我需要将这些标头传递给$context变量,我尝试使用将值放入数组然后将其传递给函数,但我从函数 stream_context_create()中收到 http 警告file_getcontents

$prod_id = 4322;
$tnxRef = "RT45635276GHF76783AC";
$mackey =  "ADECNH576748GH638NHJ7393MKDSFE73903673";
$agent = $_SERVER['HTTP_USER_AGENT'];
$hash = hash('SHA512', $prod_id.$txnRef.$mackey);

$headers = array(
    'http'=>(
        'method'=>'GET',
        'header'=>'Content: type=application/json \r\n'.
            '$agent \r\n'.
            '$hash'
        )
    )
stream_context_create($headers)

$url_returns = file_get_contents("https://test_server.com/test_paydirect/api/v1/gettransaction.json?productid=$prod_id&transactionreference=$txnRef&amount=$amount", false, $context);  

$json = json_decode($url_returns, true);

错误:

[function.file-get-contents]:打开流失败:HTTP 请求失败!HTTP/1.1 400 错误请求`

这就是我得到的错误,有人可以帮忙举一个明确的例子。

4

1 回答 1

4

您的代码中有几个错误。

服务器返回400 Bad Request,因为您的代码会导致这个错误的 HTTP 请求:

GET /test_paydirect/api/v1/gettransaction.json?productid=4322&transactionreference=RT45635276GHF76783AC&amount= HTTP/1.1
Host: test_server.com
Content: type=application/json
$agent
$hash

错误是:

  1. 变量表达式不在单引号内求值
  2. $amount未在您的代码示例中设置
  3. 标题是Content-Type:而不是Content: type=
  4. 所有标头(代理、散列)必须有相应的名称

这是一个应该有效的示例:

$context = stream_context_create(array(
  'http' => array(
    'method' => 'GET',
    'agent'  => $agent,
    'header' => "Content-Type: application/json\r\n"
        . "X-Api-Signature: $hash"
    )
  )
);

请注意: X-Api-Signature这只是一个示例 - 它取决于您使用的 API 如何命名 API 密钥标头以及如何计算哈希。您应该在 API 的文档中找到这些信息!

于 2013-03-19T12:07:29.463 回答