1

在为 Zend_Http_Client 设置 GET 参数时,您可以使用带有名称-值对的数组或在每次调用函数 setParameterGet 时传递名称和值。

在调用 LinkedIn API 时,我遇到了多个具有相同名称、不同值的 GET 参数的情况。

例如http://api.linkedin.com/v1/people/~/network/updates?type=STAT&type=PICT&count=50&start=50

重复“类型”参数。

我无法使用 Zend_Http_Client 生成这个 uri,因为第二个“type”参数的值覆盖了第一个。

任何人都可以帮我解决这个问题吗?

4

1 回答 1

1

In current implementation you can not have two or more parameters with the same name. What you should do instead is construct client like this:

$client = new Zend_Http_Client ('http://api.linkedin.com/v1/people/~/network/updates?type=STAT&type=PICT&count=50&start=50');

That way you will be able to overcome its limitation.

于 2012-02-06T11:44:25.083 回答