Hello there.
I think I'm having an strange behavior with the spring-social-foursquare, when I do this search (with Linux, linux, LINUX, linuX is the same):
I get the following message:Code:List tips = foursquare.tipOperations().search( 19.25, -99.7, "Linux", 0, false );
org.springframework.http.converter.HttpMessageNotR eadableException: Could not read JSON: Invalid UTF-8 start byte 0x91
at [Source: java.io.ByteArrayInputStream@945e31; line: 1, column: 5129]; nested exception is org.codehaus.jackson.JsonParseException: Invalid UTF-8 start byte 0x91
at [Source: java.io.ByteArrayInputStream@945e31; line: 1, column: 5129]
...
But if I do
orCode:List tips = foursquare.tipOperations().search( 19.25, -99.7, "Yahoo!", 0, false );
It works ok.Code:List tips = foursquare.tipOperations().search( 19.25, -99.7, "Starbucks", 0, false );
Any ideas about why am i getting this response?
thanks in advance


Reply With Quote
