0

在我的 API 访问文件中,我有以下代码

//operation was successful get the token from the reponse.
$challengeToken = $r->result->token;
    // to this point, we have got the token 

$userAccessKey = 'jkdijakjiejkdj25';    
//generate key
$generatedKey = md5($challengeToken.$userAccessKey);

我正在使用 http_request2 类发送帖子数据,通过声明

$loginrequest = new HTTP_Request2('http://vijayholdings.com/admin/webservice.php?operation=login&username=admin&accessKey=('.$generatedKey.')', HTTP_Request2::METHOD_POST);

有人可以告诉我如何在作为类参数给出的 URL 中包含 $generatedKey 吗?

目前

$loginrequest = new HTTP_Request2('http://vijayholdings.com/admin/webservice.php?operation=login&username=admin&accessKey=$generatedKey', HTTP_Request2::METHOD_POST);

我也试过这个,但失败了......

请指导我

4

1 回答 1

0

" "只需为解析器使用双引号即可获取"$variables"

于 2012-07-20T23:08:34.230 回答