Packagecom.adobe.webapis.flickr.methodgroups
Classpublic class Tags

Contains the methods for the Tags method group in the Flickr API. Even though the events are listed here, they're really broadcast from the FlickrService instance itself to make using the service easier.



Public Methods
 MethodDefined by
  
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
Events
 EventSummaryDefined 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
Constructor detail
Tags()constructor
public function Tags(service:FlickrService)

Construct a new Notes "method group" class

Parameters
service:FlickrService — The FlickrService this method group is associated with.
Method detail
getListPhoto()method
public function getListPhoto(photo_id:String):void

Get the tag list for a given photo.

Parameters
photo_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).

Parameters
user_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).

Parameters
user_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.

Parameters
tag:String — The tag to fetch related tags for.

See also

Event detail
tagsGetListPhotoevent 
Event object type: 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

getListPhoto
com.adobe.service.flickr.FlickrError
tagsGetListUserevent  
Event object type: 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

getListUser
com.adobe.service.flickr.FlickrError
tagsGetListUserPopularevent  
Event object type: 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

getListUserPopular
com.adobe.service.flickr.FlickrError
tagsGetRelatedevent  
Event object type: 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

getRelated
com.adobe.service.flickr.FlickrError