PHP + Guzzle,在标题中发送授权密钥

时间:2013-03-14 01:01:26

标签: php rest guzzle

我是Guzzle的新手,我正在尝试生成以下REST调用:

https://product-search.api.cj.com/v2/product-search?website-id=1594990&keywords=%2Bsony+-camera

GET /v2/product-search?website-id=1594990&keywords=%2Bsony+-camera HTTP/1.1
Host: link-search.api.cj.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Cookie: __utma=128446558.2099392322683464700.1239639722.1239639722.1239927095.2; __utmz=128446558.1239639722.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); CONTID=8073; cjuMember=0; JSESSIONID=aM5RSWdqdd_5
Authorization: YOUR DEV KEY HERE

HTTP/1.x 200 OK
Server: Resin/2.1.17
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Thu, 26 Apr 2009 10:25:03 GMT

我正在使用以下PHP代码:

$client = new Client('https://linksearch.api.cj.com', array(
    'id' => $website_id,
    'keywords' => 'sony',
));
$request = $client->get("v2/link-search?website-id={id}&keywords={keywords}");
$request->addHeader('Authorization', $dev_key);
$response = $request->send();

这里的问题是,使用addHeader()语句,我得到响应“错误请求”而没有addHeader()我得到“未经授权”。我似乎没有正确发送我的身份验证信息。有谁知道我在这里做错了什么?

2 个答案:

答案 0 :(得分:2)

这里的实际问题是:

1)标题'授权'可能区分大小写,可能需要小写。

2)如果任何请求参数不正确,即使您的网站ID,也会引发400错误。 400错误表示“由于身份验证以外的原因,请求无效。”

答案 1 :(得分:0)

我认为您错误地创建了$ request。试试这个:

$client = new Client();
$request = new Request('POST', 'http://someuri/path/here');

然后使用$ client发送请求:

$response = $client->send($request);