sst89 / as3flickrlib

Automatically exported from code.google.com/p/as3flickrlib
0 stars 0 forks source link

Minor bug in Contacts.as #21

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
According to http://www.flickr.com/services/api/flickr.contacts.getList.html 
the function getList should have 3 default parameters. 

        public function getList( filter:String = "", page:Number = 1,
per_page:Number = 1000 ):void {
            // Let the Helper do the work to invoke the method          
            MethodGroupHelper.invokeMethod( _service, getList_result, 
                                            "flickr.contacts.getList", 
                                            false,
                                            new NameValuePair( "filter", filter ),
                                            new NameValuePair( "page", page.toString() ),
                                            new NameValuePair( "per_page", per_page.toString() ) );
}

Original issue reported on code.google.com by mr.prakaz@gmail.com on 13 Mar 2008 at 3:40