You are here

README.txt in Flickr API 5

Same filename in this branch
  1. 5 README.txt
  2. 5 phpFlickr/README.txt
phpFlickr Class 3.0
Written by Dan Coulter (dancoulter@users.sourceforge.net)
Project Homepage: http://www.phpflickr.com/
Google Code Project Page: http://code.google.com/p/phpflickr/
Released under GNU Lesser General Public License (http://www.gnu.org/copyleft/lgpl.html)
For more information about the class and upcoming tools and applications using it,
visit http://www.phpflickr.com/ or http://code.google.com/p/phpflickr/

If you are interested in hiring me for a project (involving phpFlickr
or not), feel free to email me.

Installation instructions:
1.  Copy the files from the installation package into a folder on your
    server.  They need to be readible by your web server.  You can put 
    them into an include folder defined in your php.ini file, if you 
    like, though it's not required. 
    
2.  All you have to do now is include the file in your PHP scripts and 
    create an instance.  For example:
    $f = new phpFlickr();

    The constructor has three arguments:
    A.  $api_key - This is the API key given to you by flickr.com. This 
        argument is required and you can get an API Key at:
        http://www.flickr.com/services/api/key.gne
        
    B.  $secret - The "secret" is optional because is not required to 
        make unauthenticated calls, but is absolutely required for the 
        new authentication API (see Authentication section below).  You 
        will get one assigned alongside your api key.
    
    C.  $die_on_error - This takes a boolean value and determines 
        whether the class will die (aka cease operation) if the API 
        returns an error statement.  It defaults to false.  Every method 
        will return false if the API returns an error.  You can access 
        error messages using the getErrorCode() and getErrorMsg() 
        methods.
        
3.  All of the API methods have been implemented in my class.  You can 
    see a full list and documentation here: 
        http://www.flickr.com/services/api/
    To call a method, remove the "flickr." part of the name and replace 
    any periods with underscores. For example, instead of 
    flickr.photos.search, you would call $f->photos_search() or instead 
    of flickr.photos.licenses.getInfo, you would call 
    $f->photos_licenses_getInfo() (yes, it is case sensitive).
    
    All functions have their arguments implemented in the list order on 
    their documentation page (a link to which is included with each 
    method in the phpFlickr clasS). The only exceptions to this are 
    photos_search(), photos_getWithoutGeodata() and 
    photos_getWithoutGeodata() which have so many optional arguments
    that it's easier for everyone if you just have to pass an 
    associative array of arguments.  See the comment in the 
    photos_search() definition in phpFlickr.php for more information.
    

    
Authentication:
    As of this release of the phpFlickr class there is only one authentication method
    available to the API.  This method is somewhat complex, but is far more secure and
    allows your users to feel a little safer authenticating to your application.  You'll
    no longer have to ask for their username and password.
    
    Authentication API - http://www.flickr.com/services/api/auth.spec.html
        
        I know how complicated this API looks at first glance, so I've tried to
        make this as transparent to the coding process.  I'll go through the steps
        you'll need to use this.  Both the auth.php and getToken.php file will
        need your API Key and Secret entered before you can use them.
        
        To have end users authenticate their accounts:
            First, setup a callback script.  I've included a callback script that 
            is pretty flexible.  You'll find it in the package entitled "auth.php".  
            You'll need to go to flickr and point your api key to this file as the 
            callback script.  Once you've done this, on any page that you want to 
            require the end user end user to authenticate their flickr account to 
            your app, just call the phpFlickr::auth() function with whatever 
            permission you need to use.
            For example:
                $f->auth("write");
            The three permissions are "read", "write" and "delete".  The function
            defaults to "read", if you leave it blank.  
            
            Calling this function will send the user's browser to Flickr's page to 
            authenticate to your app.  Once they have logged in, it will bounce
            them back to your callback script which will redirect back to the
            original page that you called the auth() function from after setting
            a session variable to save their authentication token.  If that session
            variable exists, calling the auth() function will return the permissions
            that the user granted your app on the Flickr page instead of redirecting
            to an external page.
        
        To authenticate the app to your account to show your private pictures (for example)
            This method will allow you to have the app authenticate to one specific
            account, no matter who views your website.  This is useful to display
            private photos or photosets (among other things).
            
            *Note*: The method below is a little hard to understand, so I've setup a tool
            to help you through this: http://www.phpflickr.com/tools/auth/.
                        
            First, you'll have to setup a callback script with Flickr.  Once you've
            done that, edit line 12 of the included getToken.php file to reflect 
            which permissions you'll need for the app.  Then browse to the page.
            Once you've authorized the app with Flickr, it'll send you back to that
            page which will give you a token which will look something like this:
                1234-567890abcdef1234
            Go to the file where you are creating an instance of phpFlickr (I suggest
            an include file) and after you've created it set the token to use:
                $f->setToken("<token string>");
            This token never expires, so you don't have to worry about having to
            login periodically.
            

Using Caching:
    Caching can be very important to a project.  Just a few calls to the Flickr API
    can take long enough to bore your average web user (depending on the calls you
    are making).  I've built in caching that will access either a database or files
    in your filesystem.  To enable caching, use the phpFlickr::enableCache() function.
    This function requires at least two arguments. The first will be the type of
    cache you're using (either "db" or "fs")
    
    1.  If you're using database caching, you'll need to supply a PEAR::DB connection
        string. For example: 
        $flickr->enableCache("db", "mysql://user:password@server/database");
        The third (optional) argument is expiration of the cache in seconds (defaults 
        to 600).  The fourth (optional) argument is the table where you want to store
        the cache.  This defaults to flickr_cache and will attempt to create the table
        if it does not already exist.
    
    2.  If you're using filesystem caching, you'll need to supply a folder where the
        web server has write access. For example: 
        $flickr->enableCache("fs", "/var/www/phpFlickrCache");
        The third (optional) argument is, the same as in the Database caching, an
        expiration in seconds for the cache.
        Note: filesystem caching will probably be slower than database caching. I
        haven't done any tests of this, but if you get large amounts of calls, the
        process of cleaning out old calls may get hard on your server.
        
        You may not want to allow the world to view the files that are created during
        caching.  If you want to hide this information, either make sure that your
        permissions are set correctly, or disable the webserver from displaying 
        *.cache files.  In Apache, you can specify this in the configuration files
        or in a .htaccess file with the following directives:
        
        <FilesMatch "\.cache$">
            Deny from all
        </FilesMatch>
        
        Alternatively, you can specify a directory that is outside of the web server's
        document root.
        
Uploading
    Uploading is pretty simple. Aside from being authenticated (see Authentication 
    section) the very minimum that you'll have to pass is a path to an image file on 
    your php server. You can do either synchronous or asynchronous uploading as follows:
        synchronous:    sync_upload("photo.jpg");
        asynchronous:   async_upload("photo.jpg");
    
    The basic difference is that synchronous uploading waits around until Flickr
    processes the photo and returns a PhotoID.  Asynchronous just uploads the
    picture and gets a "ticketid" that you can use to check on the status of your 
    upload. Asynchronous is much faster, though the photoid won't be instantly
    available for you. You can read more about asynchronous uploading here:
        http://www.flickr.com/services/api/upload.async.html
        
    Both of the functions take the same arguments which are:
        Photo: The path of the file to upload.
        Title: The title of the photo.
        Description: A description of the photo. May contain some limited HTML.
        Tags: A space-separated list of tags to apply to the photo.
        is_public: Set to 0 for no, 1 for yes.
        is_friend: Set to 0 for no, 1 for yes.
        is_family: Set to 0 for no, 1 for yes.
        
Replacing Photos
    Flickr has released API support for uploading a replacement photo.  To use this
    new method, just use the "replace" function in phpFlickr.  You'll be required
    to pass the file name and Flickr's photo ID.  You need to authenticate your script
    with "write" permissions before you can replace a photo.  The arguments are:
        Photo: The path of the file to upload.
        Photo ID: The numeric Flickr ID of the photo you want to replace.
        Async (optional): Set to 0 for a synchronous call, 1 for asynchronous.
    If you use the asynchronous call, it will return a ticketid instead
    of photoid.

Other Notes:
    1.  Many of the methods have optional arguments.  For these, I have implemented 
        them in the same order that the Flickr API documentation lists them. PHP
        allows for optional arguments in function calls, but if you want to use the
        third optional argument, you have to fill in the others to the left first.
        You can use the "NULL" value (without quotes) in the place of an actual
        argument.  For example:
        $f->groups_pools_getPhotos($group_id, NULL, NULL, 10);
        This will get the first ten photos from a specific group's pool.  If you look
        at the documentation, you will see that there is another argument, "page". I've
        left it off because it appears after "per_page".
    2.  Some people will need to ues phpFlickr from behind a proxy server.  I've
        implemented a method that will allow you to use an HTTP proxy for all of your
        traffic.  Let's say that you have a proxy server on your local server running
        at port 8181.  This is the code you would use:
            $f = new phpFlickr("[api key]");
            $f->setProxy("localhost", "8181");
        After that, all of your calls will be automatically made through your proxy server.
            

That's it! Enjoy the class.  Check out the project page (listed above) for updates
and news.  I plan to implement file uploads and functions to aggregate data from
several different methods for easier use in a web application.  Thanks for your
interest in this project!

    Please email me if you have any questions or problems. You'll find my email
	at the top of this file.

 

File

phpFlickr/README.txt
View source
  1. phpFlickr Class 3.0
  2. Written by Dan Coulter (dancoulter@users.sourceforge.net)
  3. Project Homepage: http://www.phpflickr.com/
  4. Google Code Project Page: http://code.google.com/p/phpflickr/
  5. Released under GNU Lesser General Public License (http://www.gnu.org/copyleft/lgpl.html)
  6. For more information about the class and upcoming tools and applications using it,
  7. visit http://www.phpflickr.com/ or http://code.google.com/p/phpflickr/
  8. If you are interested in hiring me for a project (involving phpFlickr
  9. or not), feel free to email me.
  10. Installation instructions:
  11. 1. Copy the files from the installation package into a folder on your
  12. server. They need to be readible by your web server. You can put
  13. them into an include folder defined in your php.ini file, if you
  14. like, though it's not required.
  15. 2. All you have to do now is include the file in your PHP scripts and
  16. create an instance. For example:
  17. $f = new phpFlickr();
  18. The constructor has three arguments:
  19. A. $api_key - This is the API key given to you by flickr.com. This
  20. argument is required and you can get an API Key at:
  21. http://www.flickr.com/services/api/key.gne
  22. B. $secret - The "secret" is optional because is not required to
  23. make unauthenticated calls, but is absolutely required for the
  24. new authentication API (see Authentication section below). You
  25. will get one assigned alongside your api key.
  26. C. $die_on_error - This takes a boolean value and determines
  27. whether the class will die (aka cease operation) if the API
  28. returns an error statement. It defaults to false. Every method
  29. will return false if the API returns an error. You can access
  30. error messages using the getErrorCode() and getErrorMsg()
  31. methods.
  32. 3. All of the API methods have been implemented in my class. You can
  33. see a full list and documentation here:
  34. http://www.flickr.com/services/api/
  35. To call a method, remove the "flickr." part of the name and replace
  36. any periods with underscores. For example, instead of
  37. flickr.photos.search, you would call $f->photos_search() or instead
  38. of flickr.photos.licenses.getInfo, you would call
  39. $f->photos_licenses_getInfo() (yes, it is case sensitive).
  40. All functions have their arguments implemented in the list order on
  41. their documentation page (a link to which is included with each
  42. method in the phpFlickr clasS). The only exceptions to this are
  43. photos_search(), photos_getWithoutGeodata() and
  44. photos_getWithoutGeodata() which have so many optional arguments
  45. that it's easier for everyone if you just have to pass an
  46. associative array of arguments. See the comment in the
  47. photos_search() definition in phpFlickr.php for more information.
  48. Authentication:
  49. As of this release of the phpFlickr class there is only one authentication method
  50. available to the API. This method is somewhat complex, but is far more secure and
  51. allows your users to feel a little safer authenticating to your application. You'll
  52. no longer have to ask for their username and password.
  53. Authentication API - http://www.flickr.com/services/api/auth.spec.html
  54. I know how complicated this API looks at first glance, so I've tried to
  55. make this as transparent to the coding process. I'll go through the steps
  56. you'll need to use this. Both the auth.php and getToken.php file will
  57. need your API Key and Secret entered before you can use them.
  58. To have end users authenticate their accounts:
  59. First, setup a callback script. I've included a callback script that
  60. is pretty flexible. You'll find it in the package entitled "auth.php".
  61. You'll need to go to flickr and point your api key to this file as the
  62. callback script. Once you've done this, on any page that you want to
  63. require the end user end user to authenticate their flickr account to
  64. your app, just call the phpFlickr::auth() function with whatever
  65. permission you need to use.
  66. For example:
  67. $f->auth("write");
  68. The three permissions are "read", "write" and "delete". The function
  69. defaults to "read", if you leave it blank.
  70. Calling this function will send the user's browser to Flickr's page to
  71. authenticate to your app. Once they have logged in, it will bounce
  72. them back to your callback script which will redirect back to the
  73. original page that you called the auth() function from after setting
  74. a session variable to save their authentication token. If that session
  75. variable exists, calling the auth() function will return the permissions
  76. that the user granted your app on the Flickr page instead of redirecting
  77. to an external page.
  78. To authenticate the app to your account to show your private pictures (for example)
  79. This method will allow you to have the app authenticate to one specific
  80. account, no matter who views your website. This is useful to display
  81. private photos or photosets (among other things).
  82. *Note*: The method below is a little hard to understand, so I've setup a tool
  83. to help you through this: http://www.phpflickr.com/tools/auth/.
  84. First, you'll have to setup a callback script with Flickr. Once you've
  85. done that, edit line 12 of the included getToken.php file to reflect
  86. which permissions you'll need for the app. Then browse to the page.
  87. Once you've authorized the app with Flickr, it'll send you back to that
  88. page which will give you a token which will look something like this:
  89. 1234-567890abcdef1234
  90. Go to the file where you are creating an instance of phpFlickr (I suggest
  91. an include file) and after you've created it set the token to use:
  92. $f->setToken("");
  93. This token never expires, so you don't have to worry about having to
  94. login periodically.
  95. Using Caching:
  96. Caching can be very important to a project. Just a few calls to the Flickr API
  97. can take long enough to bore your average web user (depending on the calls you
  98. are making). I've built in caching that will access either a database or files
  99. in your filesystem. To enable caching, use the phpFlickr::enableCache() function.
  100. This function requires at least two arguments. The first will be the type of
  101. cache you're using (either "db" or "fs")
  102. 1. If you're using database caching, you'll need to supply a PEAR::DB connection
  103. string. For example:
  104. $flickr->enableCache("db", "mysql://user:password@server/database");
  105. The third (optional) argument is expiration of the cache in seconds (defaults
  106. to 600). The fourth (optional) argument is the table where you want to store
  107. the cache. This defaults to flickr_cache and will attempt to create the table
  108. if it does not already exist.
  109. 2. If you're using filesystem caching, you'll need to supply a folder where the
  110. web server has write access. For example:
  111. $flickr->enableCache("fs", "/var/www/phpFlickrCache");
  112. The third (optional) argument is, the same as in the Database caching, an
  113. expiration in seconds for the cache.
  114. Note: filesystem caching will probably be slower than database caching. I
  115. haven't done any tests of this, but if you get large amounts of calls, the
  116. process of cleaning out old calls may get hard on your server.
  117. You may not want to allow the world to view the files that are created during
  118. caching. If you want to hide this information, either make sure that your
  119. permissions are set correctly, or disable the webserver from displaying
  120. *.cache files. In Apache, you can specify this in the configuration files
  121. or in a .htaccess file with the following directives:
  122. Deny from all
  123. Alternatively, you can specify a directory that is outside of the web server's
  124. document root.
  125. Uploading
  126. Uploading is pretty simple. Aside from being authenticated (see Authentication
  127. section) the very minimum that you'll have to pass is a path to an image file on
  128. your php server. You can do either synchronous or asynchronous uploading as follows:
  129. synchronous: sync_upload("photo.jpg");
  130. asynchronous: async_upload("photo.jpg");
  131. The basic difference is that synchronous uploading waits around until Flickr
  132. processes the photo and returns a PhotoID. Asynchronous just uploads the
  133. picture and gets a "ticketid" that you can use to check on the status of your
  134. upload. Asynchronous is much faster, though the photoid won't be instantly
  135. available for you. You can read more about asynchronous uploading here:
  136. http://www.flickr.com/services/api/upload.async.html
  137. Both of the functions take the same arguments which are:
  138. Photo: The path of the file to upload.
  139. Title: The title of the photo.
  140. Description: A description of the photo. May contain some limited HTML.
  141. Tags: A space-separated list of tags to apply to the photo.
  142. is_public: Set to 0 for no, 1 for yes.
  143. is_friend: Set to 0 for no, 1 for yes.
  144. is_family: Set to 0 for no, 1 for yes.
  145. Replacing Photos
  146. Flickr has released API support for uploading a replacement photo. To use this
  147. new method, just use the "replace" function in phpFlickr. You'll be required
  148. to pass the file name and Flickr's photo ID. You need to authenticate your script
  149. with "write" permissions before you can replace a photo. The arguments are:
  150. Photo: The path of the file to upload.
  151. Photo ID: The numeric Flickr ID of the photo you want to replace.
  152. Async (optional): Set to 0 for a synchronous call, 1 for asynchronous.
  153. If you use the asynchronous call, it will return a ticketid instead
  154. of photoid.
  155. Other Notes:
  156. 1. Many of the methods have optional arguments. For these, I have implemented
  157. them in the same order that the Flickr API documentation lists them. PHP
  158. allows for optional arguments in function calls, but if you want to use the
  159. third optional argument, you have to fill in the others to the left first.
  160. You can use the "NULL" value (without quotes) in the place of an actual
  161. argument. For example:
  162. $f->groups_pools_getPhotos($group_id, NULL, NULL, 10);
  163. This will get the first ten photos from a specific group's pool. If you look
  164. at the documentation, you will see that there is another argument, "page". I've
  165. left it off because it appears after "per_page".
  166. 2. Some people will need to ues phpFlickr from behind a proxy server. I've
  167. implemented a method that will allow you to use an HTTP proxy for all of your
  168. traffic. Let's say that you have a proxy server on your local server running
  169. at port 8181. This is the code you would use:
  170. $f = new phpFlickr("[api key]");
  171. $f->setProxy("localhost", "8181");
  172. After that, all of your calls will be automatically made through your proxy server.
  173. That's it! Enjoy the class. Check out the project page (listed above) for updates
  174. and news. I plan to implement file uploads and functions to aggregate data from
  175. several different methods for easier use in a web application. Thanks for your
  176. interest in this project!
  177. Please email me if you have any questions or problems. You'll find my email
  178. at the top of this file.