huuanh1987 / facebook-java-api

Automatically exported from code.google.com/p/facebook-java-api
0 stars 0 forks source link

Response pojo is null after calling client.friends_getAppUsers() #122

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

        try {
            FacebookXmlRestClient client = new FacebookXmlRestClient("xxx", "xxx",
"xxx");
            client.friends_getAppUsers();
            Object pojo = client.getResponsePOJO();
            System.out.println("pojo: " + pojo);
        } catch (Exception e) {
            e.printStackTrace();
        }

What is the expected output? What do you see instead?

    pojo is null, but should be FriendsGetAppUsersResponse instance

What version of the product are you using?

        <dependency>
            <groupId>com.google.code.facebookapi</groupId>
            <artifactId>facebook-java-api</artifactId>
            <version>2.0.1</version>
            <scope>provided</scope>
        </dependency>

Please provide any additional information below.

Original issue reported on code.google.com by kobyl...@gmail.com on 18 Oct 2008 at 11:17

GoogleCodeExporter commented 8 years ago
pojo can only be used with FacebookJaxbRestClient..

Original comment by fern...@gmail.com on 18 Nov 2008 at 4:15