Package | Description |
---|---|
org.springframework.social.twitter.api |
Spring Social's Service API for Twitter
|
Modifier and Type | Method and Description |
---|---|
UserList |
ListOperations.addToList(long listId,
long... newMemberIds)
Adds one or more new members to a user list.
|
UserList |
ListOperations.addToList(long listId,
String... newMemberScreenNames)
Adds one or more new members to a user list.
|
UserList |
ListOperations.createList(String name,
String description,
boolean isPublic)
Create a new user list
|
UserList |
ListOperations.getList(long listId)
Retrieves a specific user list.
|
UserList |
ListOperations.getList(String screenName,
String listSlug)
Retrieves a specific user list.
|
UserList |
ListOperations.subscribe(long listId)
Subscribes the authenticating user to a list.
|
UserList |
ListOperations.subscribe(String screenName,
String listSlug)
Subscribes the authenticating user to a list.
|
UserList |
ListOperations.unsubscribe(long listId)
Unsubscribes the authenticating user from a list.
|
UserList |
ListOperations.unsubscribe(String screenName,
String listSlug)
Unsubscribes the authenticating user from a list.
|
UserList |
ListOperations.updateList(long listId,
String name,
String description,
boolean isPublic)
Updates an existing user list
|
Modifier and Type | Method and Description |
---|---|
List<UserList> |
ListOperations.getLists()
Retrieves user lists for the authenticated user.
|
List<UserList> |
ListOperations.getLists(long userId)
Retrieves user lists for a given user.
|
List<UserList> |
ListOperations.getLists(String screenName)
Retrieves user lists for a given user.
|
CursoredList<UserList> |
ListOperations.getMemberships(long userId)
Retrieves the lists that a given user is a member of.
|
CursoredList<UserList> |
ListOperations.getMemberships(String screenName)
Retrieves the lists that a given user is a member of.
|
CursoredList<UserList> |
ListOperations.getSubscriptions(long userId)
Retrieves the lists that a given user is subscribed to.
|
CursoredList<UserList> |
ListOperations.getSubscriptions(String screenName)
Retrieves the lists that a given user is subscribed to.
|
Copyright © 2017. All rights reserved.