Package com.google.code.facebookapi.schema

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


    List<Long> userIds = Collections.singletonList( client.users_getLoggedInUser() );
    List<ProfileField> profileFields = new ArrayList<ProfileField>();

    profileFields.add( ProfileField.NAME );

    UsersGetStandardInfoResponse response = client.users_getStandardInfo( userIds, profileFields );

    User user = response.getUser().get( 0 );

    assertNotNull( user.getName() );
    assertNotSame( "", user.getName().trim() );
  }
View Full Code Here

TOP

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

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.