My guess is that you have something like

curl http://search.twitter.com/search.json?q=hello&rpp=50

That '&' in there is sneaky and will be interpreted by your shell as a
meta-character to background the process.

Try wrapping the URL in quotes and see what happens:

curl "http://search.twitter.com/search.json?q=hello&rpp=50";

-Chad


On Tue, May 26, 2009 at 8:39 PM, Matt Sanford <[email protected]> wrote:
>
> Hi Jim,
>
>    There is no known issue but if you can provide the curl command you're
> using we might be able to help.
>
> Thanks;
>  – Matt Sanford / @mzsanford
>     Twitter Dev
>
> On May 26, 2009, at 5:31 PM, Jim Whimpey wrote:
>
>>
>> The API seems to be ignoring my rpp parameter. On the website I change
>> it in the URL and the value is respected, I copy that exact same URL
>> into a cURL call and the parameter is ignored, I'm returned 15
>> results, no matter what the rpp value is set to.
>
>

Reply via email to