While setting GET parameters for Zend_Http_Client, you can use array with name-value pairs or pass name and value on each call to the function setParameterGet.
While making a call to LinkedIn API, I have a situation where there are multiple GET parameters with the same name, different values.
e.g. http://api.linkedin.com/v1/people/~/network/updates?type=STAT&type=PICT&count=50&start=50
The "type" parameter is repeated.
I have not been able to generate this uri using the Zend_Http_Client because the second "type" parameter's value override the first one.
Can anybody help me out how to achieve this?