tags:

views:

22

answers:

3

Hi,

I want to make a request to Twitter for a keyword that has a space in it. So i want to do http://search.twitter.com/search.atom?q=land rover.

How do i do this?

+1  A: 

Like this: http://search.twitter.com/search.atom?q=land%20rover

grapefrukt
+1  A: 

Use URL encode:

http://search.twitter.com/search.atom?q=land%20rover

sheeks06
Many thanks guys. don't know why I didn't think of this.
elduderino