sst89 / as3flickrlib

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

New url for Flickr API version .85 #10

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Attempting to make any Flickr call via the
com.adobe.webapis.flickr.FlickrService version .85 will fail due to
incorrect URLs.

Line 53 in FlickrService needs to be changed from:
  public static const END_POINT:String = "http://flickr.com/services/rest/?";

to:
  public static const END_POINT:String =
"http://api.flickr.com/services/rest/?";

and

Line 58 in FlickrService needs to be changed from:
  public static const AUTH_END_POINT:String =
"http://flickr.com/services/auth/?";

to:
  public static const AUTH_END_POINT:String =
"http://api.flickr.com/services/auth/?";

Original issue reported on code.google.com by meandmyb...@gmail.com on 14 Mar 2007 at 12:21

GoogleCodeExporter commented 8 years ago
Duplicate of #7, already fixed in the trunk in SVN.  Maybe we should bundle that
change into a .86 release, since it's been fixed for couple of months now.

Original comment by darron.schall on 5 Apr 2007 at 9:53