public interface CheckinMethods
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
checkin(CheckinUpdate checkinUpdate)
Deprecated.
creating a Post with a location attached
|
java.lang.String |
checkin(java.lang.String userId,
CheckinUpdate checkinUpdate)
Deprecated.
creating a Post with a location attached
|
java.lang.String |
commentCheckin(java.lang.String checkinId,
java.lang.String message)
Comments on a checkin.
|
Checkin |
getCheckin(java.lang.String checkinId)
Returns a single checkin information.
|
Checkin |
getCheckin(java.lang.String checkinId,
Reading reading)
Returns a single checkin information.
|
ResponseList<Comment> |
getCheckinComments(java.lang.String checkinId)
Returns the comments on a checkin.
|
ResponseList<Comment> |
getCheckinComments(java.lang.String checkinId,
Reading reading)
Returns the comments on a checkin.
|
ResponseList<Like> |
getCheckinLikes(java.lang.String checkinId)
Returns the users who like a checkin.
|
ResponseList<Like> |
getCheckinLikes(java.lang.String checkinId,
Reading reading)
Returns the users who like a checkin.
|
ResponseList<Checkin> |
getCheckins()
Returns the places that the current user has checked-into
or made to the Place Page by the current user or friends of the current user.
|
ResponseList<Checkin> |
getCheckins(Reading reading)
Returns the places that the current user has checked-into
or made to the Place Page by the current user or friends of the current user.
|
ResponseList<Checkin> |
getCheckins(java.lang.String id)
Returns the places that a user has checked-into
or made to the Place Page by the user or friends of the user.
|
ResponseList<Checkin> |
getCheckins(java.lang.String id,
Reading reading)
Returns the places that a user has checked-into
or made to the Place Page by the user or friends of the user.
|
boolean |
likeCheckin(java.lang.String checkinId)
Likes the checkin.
|
boolean |
unlikeCheckin(java.lang.String checkinId)
Unlikes the checkin.
|
ResponseList<Checkin> getCheckins() throws FacebookException
FacebookException - when Facebook service or network is unavailableResponseList<Checkin> getCheckins(Reading reading) throws FacebookException
reading - optional reading parameters. see Graph API#reading - Facebook DevelopersFacebookException - when Facebook service or network is unavailableResponseList<Checkin> getCheckins(java.lang.String id) throws FacebookException
id - the ID of a user/pageFacebookException - when Facebook service or network is unavailableResponseList<Checkin> getCheckins(java.lang.String id, Reading reading) throws FacebookException
id - the ID of a user/pagereading - optional reading parameters. see Graph API#reading - Facebook DevelopersFacebookException - when Facebook service or network is unavailablejava.lang.String checkin(CheckinUpdate checkinUpdate) throws FacebookException
checkinUpdate - the checkin to be createdFacebookException - when Facebook service or network is unavailablejava.lang.String checkin(java.lang.String userId,
CheckinUpdate checkinUpdate)
throws FacebookException
userId - the ID of a usercheckinUpdate - the checkin to be createdFacebookException - when Facebook service or network is unavailableCheckin getCheckin(java.lang.String checkinId) throws FacebookException
checkinId - the ID of a checkinFacebookException - when Facebook service or network is unavailableCheckin getCheckin(java.lang.String checkinId, Reading reading) throws FacebookException
checkinId - the ID of a checkinreading - optional reading parameters. see Graph API#reading - Facebook Developers see Graph API#reading - Facebook DevelopersFacebookException - when Facebook service or network is unavailableResponseList<Comment> getCheckinComments(java.lang.String checkinId) throws FacebookException
checkinId - the ID of a checkinFacebookException - when Facebook service or network is unavailableResponseList<Comment> getCheckinComments(java.lang.String checkinId, Reading reading) throws FacebookException
checkinId - the ID of a checkinreading - optional reading parameters. see Graph API#reading - Facebook Developers see Graph API#reading - Facebook DevelopersFacebookException - when Facebook service or network is unavailablejava.lang.String commentCheckin(java.lang.String checkinId,
java.lang.String message)
throws FacebookException
checkinId - the ID of a checkinmessage - comment textFacebookException - when Facebook service or network is unavailableResponseList<Like> getCheckinLikes(java.lang.String checkinId) throws FacebookException
checkinId - the ID of a checkinFacebookException - when Facebook service or network is unavailableResponseList<Like> getCheckinLikes(java.lang.String checkinId, Reading reading) throws FacebookException
checkinId - the ID of a checkinreading - optional reading parameters. see Graph API#reading - Facebook Developers see Graph API#reading - Facebook DevelopersFacebookException - when Facebook service or network is unavailableboolean likeCheckin(java.lang.String checkinId)
throws FacebookException
checkinId - the ID of a checkinFacebookException - when Facebook service or network is unavailableboolean unlikeCheckin(java.lang.String checkinId)
throws FacebookException
checkinId - the ID of a checkinFacebookException - when Facebook service or network is unavailable