Package | com.adobe.webapis.flickr.methodgroups |
Class | public class Tags |
Method | Defined by | ||
---|---|---|---|
Tags(service:FlickrService)
Construct a new Notes "method group" class
| Tags | ||
getListPhoto(photo_id:String):void
Get the tag list for a given photo.
| Tags | ||
getListUser(user_id:String = ""):void
Get the tag list for a given user (or the currently logged in user).
| Tags | ||
getListUserPopular(user_id:String = ""):void
Get the popular tags for a given user (or the currently logged in user).
| Tags | ||
getRelated(tag:String):void
Returns a list of tags 'related' to the given tag, based on
clustered usage analysis.
| Tags |
Event | Summary | Defined by | ||
---|---|---|---|---|
Broadcast as a result of the getListPhoto method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a Photo instance When success is false, contains an "error" FlickrError instance | Tags | |||
Broadcast as a result of the getListUser method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance | Tags | |||
Broadcast as a result of the getListUserPopular method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance | Tags | |||
Broadcast as a result of the getRelated method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, an Array of PhotoTag instances When success is false, contains an "error" FlickrError instance | Tags |
Tags | () | constructor |
public function Tags(service:FlickrService)
Construct a new Notes "method group" class
Parametersservice:FlickrService — The FlickrService this method group
is associated with.
|
getListPhoto | () | method |
public function getListPhoto(photo_id:String):void
Get the tag list for a given photo.
Parametersphoto_id:String — The id of the photo to return tags for.
|
See also
getListUser | () | method |
public function getListUser(user_id:String = ""):void
Get the tag list for a given user (or the currently logged in user).
Parametersuser_id:String (default = " ") — (Optional) The NSID of the user to fetch the tag list for.
If this argument is not specified, the currently logged in
user (if any) is assumed.
|
See also
getListUserPopular | () | method |
public function getListUserPopular(user_id:String = ""):void
Get the popular tags for a given user (or the currently logged in user).
Parametersuser_id:String (default = " ") — (Optional) The NSID of the user to fetch the tag list for.
If this argument is not specified, the currently logged in user
(if any) is assumed.
|
See also
getRelated | () | method |
public function getRelated(tag:String):void
Returns a list of tags 'related' to the given tag, based on clustered usage analysis.
Parameterstag:String — The tag to fetch related tags for.
|
See also
tagsGetListPhoto | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the getListPhoto method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a Photo instance When success is false, contains an "error" FlickrError instance
See also
tagsGetListUser | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the getListUser method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance
See also
tagsGetListUserPopular | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the getListUserPopular method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance
See also
tagsGetRelated | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the getRelated method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, an Array of PhotoTag instances When success is false, contains an "error" FlickrError instance
See also