I have the following code. It should return the user details. It works when I pass in one name("Justin") as follows.
User user = twitter.showUser("Justin");
It does not work when I pass two words("Justin Daniel"):
User user = twitter.showUser("Justin Daniel");
Is there a way i can represent the space and pass this string? What should I do?