Package | com.adobe.webapis.flickr.methodgroups |
Class | public class Groups |
Property | Defined by | ||
---|---|---|---|
pools : Pools
[read-only]
Provide read-only access to the Pools method group in the Flickr API
| Groups |
Method | Defined by | ||
---|---|---|---|
Groups(service:FlickrService)
Construct a new Blogs "method group" class
| Groups | ||
browse(cat_id:String = "0"):void
Browse the group category tree, finding groups and sub-categories.
| Groups | ||
getInfo(group_id:String):void
Get information about a group.
| Groups | ||
search(text:String, per_page:Number = 100, page:Number = 1):void
Search for groups.
| Groups |
Event | Summary | Defined by | ||
---|---|---|---|---|
Broadcast as a result of the browse method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "category" Category instance When success is false, contains an "error" FlickrError instance | Groups | |||
Broadcast as a result of the getInfo method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "group" Group instance When success is false, contains an "error" FlickrError instance | Groups | |||
Broadcast as a result of the search method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "groups" PagedGroupList instance When success is false, contains an "error" FlickrError instance | Groups |
pools | property |
pools:Pools
[read-only]Provide read-only access to the Pools method group in the Flickr API
Implementation public function get pools():Pools
Groups | () | constructor |
public function Groups(service:FlickrService)
Construct a new Blogs "method group" class
Parametersservice:FlickrService — The FlickrService this method group
is associated with.
|
browse | () | method |
public function browse(cat_id:String = "0"):void
Browse the group category tree, finding groups and sub-categories. This method requires authentication with READ permission.
Parameterscat_id:String (default = "0 ") — (Optional) The category id to fetch a list of groups
and sub-categories for. If not specified, it defaults
to zero, the root of the category tree.
|
See also
getInfo | () | method |
public function getInfo(group_id:String):void
Get information about a group.
Parametersgroup_id:String — The NSID of the group to fetch information for.
|
See also
search | () | method |
public function search(text:String, per_page:Number = 100, page:Number = 1):void
Search for groups. 18+ groups will only be returned for authenticated calls where the authenticated user is over 18.
Parameterstext:String — The text to search for.
|
|
per_page:Number (default = 100 ) — (Optional) Number of groups to return per page. If this
argument is ommited, it defaults to 100. The maximum allowed
value is 500.
|
|
page:Number (default = 1 ) — (Optional) The page of results to return. If this argument
is ommited, it defaults to 1.
|
See also
groupsBrowse | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the browse method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "category" Category instance When success is false, contains an "error" FlickrError instance
See also
groupsGetInfo | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the getInfo method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "group" Group instance When success is false, contains an "error" FlickrError instance
See also
groupsSearch | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the search method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, contains a "groups" PagedGroupList instance When success is false, contains an "error" FlickrError instance
See also