douglashowe / as3flickrlib

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

New Flickr API Endpoint (crossdomain.xml) #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Because of a security issue [1], the Flash cross-domain-policy file
(crossdomain.xml) has been moved from http://flickr.com/crossdomain.xml to
http://api.flickr.com/crossdomain.xml.

Please update the API end points accordingly, thanks:

Current:
/**
         * The REST endpoint where we can talk with Flickr service
         */
        public static const END_POINT:String = "http://flickr.com/services/rest/?";

        /**
         * The endpoint where we go for authentication
         */
        public static const AUTH_END_POINT:String =
"http://flickr.com/services/auth/?";

Updated:
/**
         * The REST endpoint where we can talk with Flickr service
         */
        public static const END_POINT:String =
"http://api.flickr.com/services/rest/?";

        /**
         * The endpoint where we go for authentication
         */
        public static const AUTH_END_POINT:String =
"http://api.flickr.com/services/auth/?";

Regards
Daniel

[1] http://www.petefreitag.com/item/595.cfm

Original issue reported on code.google.com by daniel.gasienica on 9 Jan 2007 at 9:25

GoogleCodeExporter commented 8 years ago

Original comment by owen.van...@gmail.com on 10 Jan 2007 at 1:59

GoogleCodeExporter commented 8 years ago
fixed on the trunk, needs to be verified

Original comment by owen.van...@gmail.com on 12 Jan 2007 at 2:15