Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to access a Rest resource with path variable to access different resources:

@Test
public void testGetDBs() throws IOException {
    GooUrl url = new GooUrl(GOO_URL + "users/id1"); // This works
    List<String> path = new LinkedList<String>();
    path.add("users");
    path.add("id1");
    //url.setPathParts(path); // this does not work
    HttpRequest request;
    try {
        request = requestFactory.buildGetRequest(url);
        request.setMethod(HttpMethod.POST);
        String result = request.execute().parseAsString();
        System.out.println("Result = " + result);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

However, I am getting

java.net.MalformedURLException: For input string: "8888users"

when I do setPathParts

share|improve this question
The API contains methods to set the path of the URL. – user647772 Nov 14 '12 at 9:59
I have updated my question – xybrek Nov 14 '12 at 10:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.