Package org.springframework.social.facebook.api

Examples of org.springframework.social.facebook.api.Reference


    assertNotNull(friendListId);
   
    PagedList<Reference> friendLists = fb.friendOperations().getFriendLists();
    assertEquals(1, friendLists.size());
   
    Reference friendList = fb.friendOperations().getFriendList(friendListId);
    assertEquals(friendListId, friendList.getId());
    assertEquals("My Good Friends", friendList.getName());
   
    fb.friendOperations().deleteFriendList(friendListId);
    friendLists = fb.friendOperations().getFriendLists();
    assertEquals(0, friendLists.size());
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.facebook.api.Reference

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.