在我的 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);
我也试过这个,但失败了......
请指导我