Package com.google.code.facebookapi.schema

Examples of com.google.code.facebookapi.schema.FriendsGetResponse


    Long userId = client.users_getLoggedInUser();
    assertNotNull( userId );

    // Get friends list
    client.friends_get();
    FriendsGetResponse response = (FriendsGetResponse) client.getResponsePOJO();
    List<Long> friends = response.getUid();

    // Go fetch the information for the user list of user ids
    client.users_getInfo( friends, EnumSet.of( ProfileField.NAME ) );

    UsersGetInfoResponse userResponse = (UsersGetInfoResponse) client.getResponsePOJO();
View Full Code Here

TOP

Related Classes of com.google.code.facebookapi.schema.FriendsGetResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.