Flickr: Scheme API for Flickr
David Van Horn <dvanhorn@ccs.neu.edu>
(require (planet dvanhorn/flickr:2:1)) |
1 Overview
This collection provides a Scheme wrapping to the Flickr web service:
Procedures are named exactly as in the Flickr API. Arguments are specified with keywords spelled exactly as in the API, their values must always be strings.
Calling a procedure returns a list of Xexprs constituting the [xml-payload-here] portion of the response (see the Flickr documentation on example responses).
Here is an example call to the echo method (the value of the api_key should be changed to your own key, assigned by Flickr).
Example: |
> (flickr.test.echo #:api_key "138427ce2d97d6a2d0c4a2f045a59bfa") |
((method () "flickr.test.echo") (api_key () "138427ce2d97d6a2d0c4a2f045a59bfa")) |
If the Flickr service responds with an error response, an exception is raised.
(current-api-key) → string? |
(current-api-key api-key) → void? |
api-key : string? |
Examples: |
> (current-api-key "138427ce2d97d6a2d0c4a2f045a59bfa") |
> (flickr.test.echo) |
((method () "flickr.test.echo") (api_key () "138427ce2d97d6a2d0c4a2f045a59bfa")) |
Methods may have required arguments and an error will be raised if ommitted.
(current-sec-key) → string? |
(current-sec-key sec-key) → void? |
sec-key : string? |
2 Example
See example.ss for a example program that logs in a user and makes authenticated calls to the API.
To run:
mred-text -p dvanhorn/flickr/example
3 Methods
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
per_page – Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
timeframe : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
timeframe – The timeframe in which to return updates for. This can be specified in days (<code>’2d’</code>) or hours (<code>’4h’</code>). The default behavoir is to return changes since the beginning of the previous user session.
per_page – Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) | ||||||||||||
auth_token : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
auth_token – The authentication token to check.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| |||||||||||||||||||||
api_sig : (or/c #f string?) = #f | |||||||||||||||||||||
auth_token : (or/c #f string?) = #f | |||||||||||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
mini_token : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
mini_token – The mini-token typed in by a user. It should be 9 digits long. It may optionally contain dashes.
1 – Mini-token not found: The passed mini-token was not valid.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
frob : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
frob – The frob to check.
108 – Invalid frob: The specified frob does not exist or has already been used.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
service : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
service – Optionally only return blogs for a given service id. You can get a list of from <a href="/services/api/flickr.blogs.getServices.html">flickr.blogs.getServices()</a>.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
blog_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||||||||||||||
description : string? | ||||||||||||||||||||||||||||||||||||
blog_password : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
service : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
blog_id – The id of the blog to post to.
photo_id – The id of the photo to blog
title – The blog post title
description – The blog post body
blog_password – The password for the blog (used when the blog does not have a stored password).
service – A Flickr supported blogging service. Instead of passing a blog id you can pass a service id and we’ll post to the first blog of that service we find.
1 – Blog not found: The blog id was not the id of a blog belonging to the calling user
2 – Photo not found: The photo id was not the id of a public photo
3 – Password needed: A password is not stored for the blog and one was not passed with the request
4 – Blog post failed: The blog posting failed (a blogging API failure of some sort)
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
collection_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
collection_id – The ID of the collection to fetch information for.
1 – Collection not found: The requested collection could not be found or is not visible to the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
collection_id : (or/c #f string?) = #f | ||||||||||||||||||||
user_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
collection_id – The ID of the collection to fetch a tree for, or zero to fetch the root collection. Defaults to zero.
user_id – The ID of the account to fetch the collection tree for. Deafults to the calling user.
1 – User not found: The specified user could not be found.
2 – Collection not found: The specified collection does not exist.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
filter : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
filter – An optional filter of the results. The following values are valid:<br /> <dl><dt><b><code>friends</code></b></dt><dl>Only contacts who are friends (and not family)</dl><dt><b><code>family</code></b></dt><dl>Only contacts who are family (and not friends)</dl><dt><b><code>both</code></b></dt><dl>Only contacts who are both friends and family</dl><dt><b><code>neither</code></b></dt><dl>Only contacts who are neither friends nor family</dl></dl>
page – The page of results to return. If this argument is omitted, it defaults to 1.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
date_lastupload : (or/c #f string?) = #f | ||||||||||||||||||||||||
filter : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date_lastupload – Limits the resultset to contacts that have uploaded photos since this date. The date should be in the form of a Unix timestamp. The default offset is (1) hour and the maximum (24) hours.
filter – Limit the result set to all contacts or only those who are friends or family. Valid options are: <ul><li><strong>ff</strong> friends and family</li><li><strong>all</strong> all your contacts</li></ul> Default value is "all".
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||
page : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the contact list for.
page – The page of results to return. If this argument is omitted, it defaults to 1.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000.
1 – User not found: The specified user NSID was not a valid user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add to the user’s favorites.
1 – Photo not found: The photo id passed was not a valid photo id.
2 – Photo is owned by you: The photo belongs to the user and so cannot be added to their favorites.
3 – Photo is already in favorites: The photo is already in the user’s list of favorites.
4 – User cannot see photo: The user does not have permission to add the photo to their favorites.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
user_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
min_fave_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
max_fave_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned.
min_fave_date – Minimum date that a photo was favorited on. The date should be in the form of a unix timestamp.
max_fave_date – Maximum date that a photo was favorited on. The date should be in the form of a unix timestamp.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User not found: The specified user NSID was not a valid flickr user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||||||
min_fave_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
max_fave_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The user to fetch the favorites list for.
min_fave_date – Minimum date that a photo was favorited on. The date should be in the form of a unix timestamp.
max_fave_date – Maximum date that a photo was favorited on. The date should be in the form of a unix timestamp.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User not found: The specified user NSID was not a valid flickr user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to remove from the user’s favorites.
1 – Photo not in favorites: The photo id passed was not in the user’s favorites.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
gallery_id : string? | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
comment : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like <a href="/services/api/flickr.galleries.getList.html">flickr.galleries.getList</a>, and <a href="/services/api/flickr.galleries.getListForPhoto.html">flickr.galleries.getListForPhoto</a>.
photo_id – The photo ID to add to the gallery
comment – A short comment or story to accompany the photo.
1 – Required parameter missing: One or more required parameters was not included with your API call.
2 – Invalid gallery ID: That gallery could not be found.
3 – Invalid photo ID: The requested photo could not be found.
4 – Invalid comment: The comment body could not be validated.
5 – Failed to add photo: Unable to add the photo to the gallery.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||
description : string? | ||||||||||||||||||||||||
primary_photo_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
title – The name of the gallery
description – A short description for the gallery
primary_photo_id – The first photo to add to your gallery
1 – Required parameter missing: One or more of the required parameters was missing from your API call.
2 – Invalid title or description: The title or the description could not be validated.
3 – Failed to add gallery: There was a problem creating the gallery.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
gallery_id : string? | ||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||
description : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The gallery ID to update.
title – The new title for the gallery.
description – The new description for the gallery.
1 – Required parameter missing: One or more required parameters was missing from your request.
2 – Invalid title or description: The title or description arguments could not be validated.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
gallery_id : string? | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
comment : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like flickr.galleries.getList, and flickr.galleries.getListForPhoto.
photo_id – The photo ID to add to the gallery.
comment – The updated comment the photo.
1 – Invalid gallery ID: That gallery could not be found.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
gallery_id : string? | ||||||||||||||||||||||||||||
primary_photo_id : string? | ||||||||||||||||||||||||||||
photo_ids : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The id of the gallery to modify. The gallery must belong to the calling user.
primary_photo_id – The id of the photo to use as the ’primary’ photo for the gallery. This id must also be passed along in photo_ids list argument.
photo_ids – A comma-delimited list of photo ids to include in the gallery. They will appear in the set in the order sent. This list must contain the primary photo id. This list of photos replaces the existing list.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
gallery_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The gallery ID you are requesting information for.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to get a galleries list for. If none is specified, the calling user is assumed.
per_page – Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The ID of the photo to fetch a list of galleries for.
per_page – Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
gallery_id : string? | ||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
gallery_id – The ID of the gallery of photos to return
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
cat_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
cat_id – 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.
1 – Category not found: The value passed for cat_id was not a valid category id.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
group_id : string? | ||||||||||||||||||||
lang : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
group_id – The NSID of the group to fetch information for.
lang – The language of the group name and description to fetch. If the language is not found, the primary language of the group will be returned. Valid values are the same as <a href="/services/feeds/">in feeds</a>.
1 – Group not found: The group NSID passed did not refer to a group that the calling user can see - either an invalid group is or a group that can’t be seen by the calling user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
group_id : string? | ||||||||||||||||||||||||||||
membertypes : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
group_id – Return a list of members for this group. The group must be viewable by the Flickr member on whose behalf the API call is made.
membertypes – Comma separated list of member types <ul><li>2: member</li><li>3: moderator</li><li>4: admin</li></ul> By default returns all types. (Returning super rare member type "1: narwhal" isn’t supported by this API method)
per_page – Number of members to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Group not found:
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
group_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add to the group pool. The photo must belong to the calling user.
group_id – The NSID of the group who’s pool the photo is to be added to.
1 – Photo not found: The photo id passed was not the id of a photo owned by the caling user.
2 – Group not found: The group id passed was not a valid id for a group the user is a member of.
3 – Photo already in pool: The specified photo is already in the pool for the specified group.
4 – Photo in maximum number of pools: The photo has already been added to the maximum allowed number of pools.
5 – Photo limit reached: The user has already added the maximum amount of allowed photos to the pool.
6 – Your Photo has been added to the Pending Queue for this Pool: The pool is moderated, and the photo has been added to the Pending Queue. If it is approved by a group administrator, it will be added to the pool.
7 – Your Photo has already been added to the Pending Queue for this Pool: The pool is moderated, and the photo has already been added to the Pending Queue.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
group_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch the context for.
group_id – The nsid of the group who’s pool to fetch the photo’s context for.
1 – Photo not found: The photo id passed was not a valid photo id, or was the id of a photo that the calling user does not have permission to view.
2 – Photo not in pool: The specified photo is not in the specified group’s pool.
3 – Group not found: The specified group nsid was not a valid group or the caller does not have permission to view the group’s pool.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
page : (or/c #f string?) = #f | ||||||||||||||||||||
per_page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
page – The page of results to return. If this argument is omitted, it defaults to 1.
per_page – Number of groups to return per page. If this argument is omitted, it defaults to 400. The maximum allowed value is 400.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
group_id : string? | ||||||||||||||||||||||||||||||||||||
tags : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
user_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
group_id – The id of the group who’s pool you which to get the photo list for.
tags – A tag to filter the pool with. At the moment only one tag at a time is supported.
user_id – The nsid of a user. Specifiying this parameter will retrieve for you only those photos that the user has contributed to the group pool.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Group not found: The group id passed was not a valid group id.
2 – You don’t have permission to view this pool: The logged in user (if any) does not have permission to view the pool for this group.
3 – Unknown user: The user specified by user_id does not exist.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
group_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to remove from the group pool. The photo must either be owned by the calling user of the calling user must be an administrator of the group.
group_id – The NSID of the group who’s pool the photo is to removed from.
1 – Group not found: The group_id passed did not refer to a valid group.
2 – Photo not in pool: The photo_id passed was not a valid id of a photo in the group pool.
3 – Insufficient permission to remove photo: The calling user doesn’t own the photo and is not an administrator of the group, so may not remove the photo from the pool.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
text : string? | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
text – The text to search for.
per_page – Number of groups to return per page. If this argument is ommited, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is ommited, it defaults to 1.
1 – No text passed: The required text argument was ommited.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – A specific date, formatted as YYYY-MM-DD, to return interesting photos for.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Not a valid date string.: The date string passed did not validate. All dates must be formatted : YYYY-MM-DD
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
predicate : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
predicate – Limit the list of namespaces returned to those that have the following predicate.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Not a valid predicate.: Missing or invalid predicate argument.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
namespace : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
predicate : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
namespace – Limit the list of pairs returned to those that have the following namespace.
predicate – Limit the list of pairs returned to those that have the following predicate.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Not a valid namespace: Missing or invalid namespace argument.
2 – Not a valid predicate: Missing or invalid predicate argument.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
namespace : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
namespace – Limit the list of predicates returned to those that have the following namespace.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Not a valid namespace: Missing or invalid namespace argument.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
namespace : (or/c #f string?) = #f | ||||||||||||||||||||||||
predicate : (or/c #f string?) = #f | ||||||||||||||||||||||||
added_since : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
namespace – A namespace that all values should be restricted to.
predicate – A predicate that all values should be restricted to.
added_since – Only return machine tags values that have been added since this timestamp, in epoch seconds.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
namespace : string? | ||||||||||||||||||||||||||||
predicate : string? | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
namespace – The namespace that all values should be restricted to.
predicate – The predicate that all values should be restricted to.
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Not a valid namespace: Missing or invalid namespace argument.
2 – Not a valid predicate: Missing or invalid predicate argument.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
panda_name : string? | ||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
panda_name – The name of the panda to ask for photos from. There are currently three pandas named:<br /><br /><ul><li><strong><a href="http://flickr.com/photos/ucumari/126073203/">ling ling</a></strong></li><li><strong><a href="http://flickr.com/photos/lynnehicks/136407353">hsing hsing</a></strong></li><li><strong><a href="http://flickr.com/photos/perfectpandas/1597067182/">wang wang</a></strong></li></ul><br />You can fetch a list of all the current pandas using the <a href="/services/api/flickr.panda.getList.html">flickr.panda.getList</a> API method.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Required parameter missing.: One or more required parameters was not included with your request.
2 – Unknown panda: You requested a panda we haven’t met yet.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
find_email : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
find_email – The email address of the user to find (may be primary or secondary).
1 – User not found: No user with the supplied email address was found.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
username : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
username – The username of the user to lookup.
1 – User not found: No user with the supplied username was found.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch information about.
1 – User not found: The user id passed did not match a Flickr user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
safe_search : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
content_type : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user who’s photos to return. A value of "me" will return the calling user’s photos.
safe_search – Safe search setting: <ul><li>1 for safe.</li><li>2 for moderate.</li><li>3 for restricted.</li></ul> (Please note: Un-authed calls can only see Safe content.)
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
content_type – Content Type setting: <ul><li>1 for photos only.</li><li>2 for screenshots only.</li><li>3 for ’other’ only.</li><li>4 for photos and screenshots.</li><li>5 for screenshots and ’other’.</li><li>6 for photos and ’other’.</li><li>7 for photos, screenshots, and ’other’ (all).</li></ul>
privacy_filter – Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Required arguments missing:
2 – Unknown user: A user_id was passed which did not match a valid flickr user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user who’s photo to search. A value of "me" will search against the calling user’s photos for authenticated calls.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User not found.: A user_id was passed which did not match a valid flickr user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch groups for.
1 – User not found: The user id passed did not match a Flickr user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||
safe_search : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user who’s photos to return.
safe_search – Safe search setting: <ul><li>1 for safe.</li><li>2 for moderate.</li><li>3 for restricted.</li></ul> (Please note: Un-authed calls can only see Safe content.)
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User not found: The user NSID passed was not a valid user NSID.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
tags : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add tags to.
tags – The tags to add to the photo.
1 – Photo not found: The photo id passed was not the id of a photo that the calling user can add tags to. It could be an invalid id, or the user may not have permission to add tags to it.
2 – Maximum number of tags reached: The maximum number of tags for the photo has been reached - no more tags can be added. If the current count is less than the maximum, but adding all of the tags for this request would go over the limit, the whole request is ignored. I.E. when you get this message, none of the requested tags have been added.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
comment_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add a comment to.
comment_text – Text of the comment
1 – Photo not found.: The photo id passed was not a valid photo id
8 – Blank comment.: Comment text can not be blank
9 – User is posting comments too fast.: The user has reached the limit for number of comments posted during a specific time period. Wait a bit and try again.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
comment_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
comment_id – The id of the comment to edit.
1 – Photo not found.: The requested comment is against a photo which no longer exists.
2 – Comment not found.: The comment id passed was not a valid comment id
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
comment_id : string? | ||||||||||||||||||||||||
comment_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
comment_id – The id of the comment to edit.
comment_text – Update the comment to this text.
1 – Photo not found.: The requested comment is against a photo which no longer exists.
2 – Comment not found.: The comment id passed was not a valid comment id
8 – Blank comment.: Comment text can not be blank
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||
min_comment_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
max_comment_date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch comments for.
min_comment_date – Minimum date that a a comment was added. The date should be in the form of a unix timestamp.
max_comment_date – Maximum date that a comment was added. The date should be in the form of a unix timestamp.
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
date_lastcomment : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
contacts_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date_lastcomment – Limits the resultset to photos that have been commented on since this date. The date should be in the form of a Unix timestamp.<br /><br /> The default, and maximum, offset is (1) hour.
contacts_filter – A comma-separated list of contact NSIDs to limit the scope of the query to.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to delete.
1 – Photo not found: The photo id was not the id of a photo belonging to the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
lat : string? | ||||||||||||||||||||||||||||||||||||
lon : string? | ||||||||||||||||||||||||||||||||||||
accuracy : string? | ||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
lat – The latitude of the photos to be update whose valid range is -90 to 90. Anything more than 6 decimal places will be truncated.
lon – The longitude of the photos to be updated whose valid range is -180 to 180. Anything more than 6 decimal places will be truncated.
accuracy – Recorded accuracy level of the photos to be updated. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. Defaults to 16 if not specified.
place_id – A Flickr Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
woe_id – A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
1 – Required arguments missing: Some or all of the required arguments were not supplied.
2 – Not a valid latitude: The latitude argument failed validation.
3 – Not a valid longitude: The longitude argument failed validation.
4 – Not a valid accuracy: The accuracy argument failed validation.
5 – Not a valid Places ID: An invalid Places (or WOE) ID was passed with the API call.
6 – No photos geotagged at that location: There were no geotagged photos found for the authed user at the supplied latitude, longitude and accuracy.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The ID of the photo whose WOE location is being corrected.
place_id – A Flickr Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
woe_id – A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
1 – User has not configured default viewing settings for location data.: Before users may assign location data to a photo they must define who, by default, may view that information. Users can edit this preference at <a href="http://www.flickr.com/account/geo/privacy/">http://www.flickr.com/account/geo/privacy/</a>
2 – Missing place ID: No place ID was passed to the method
3 – Not a valid place ID: The place ID passed to the method could not be identified
4 – Server error correcting location.: There was an error trying to correct the location.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo you want to retrieve location data for.
1 – Photo not found.: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Photo has no location information.: The photo requested has no location data or is not viewable by the calling user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to get permissions for.
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Photo has no location information: The photo requested has no location data or is not viewable by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
lat : string? | ||||||||||||||||||||||||||||||||||||
lon : string? | ||||||||||||||||||||||||||||||||||||
accuracy : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
lat – The latitude whose valid range is -90 to 90. Anything more than 6 decimal places will be truncated.
lon – The longitude whose valid range is -180 to 180. Anything more than 6 decimal places will be truncated.
accuracy – Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. Defaults to 16 if not specified.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Required arguments missing: One or more required arguments was missing from the method call.
2 – Not a valid latitude: The latitude argument failed validation.
3 – Not a valid longitude: The longitude argument failed validation.
4 – Not a valid accuracy: The accuracy argument failed validation.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo you want to remove location data from.
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Photo has no location information: The specified photo has not been geotagged - there is nothing to remove.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
context : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set context data for.
context – Context is a numeric value representing the photo’s geotagginess beyond latitude and longitude. For example, you may wish to indicate that a photo was taken "indoors" or "outdoors". <br /><br /> The current list of context IDs is :<br /><br/><ul><li><strong>0</strong>, not defined.</li><li><strong>1</strong>, indoors.</li><li><strong>2</strong>, outdoors.</li></ul>
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Not a valid context: The context ID passed to the method is invalid.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||
lat : string? | ||||||||||||||||||||||||||||||||
lon : string? | ||||||||||||||||||||||||||||||||
accuracy : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
context : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set location data for.
lat – The latitude whose valid range is -90 to 90. Anything more than 6 decimal places will be truncated.
lon – The longitude whose valid range is -180 to 180. Anything more than 6 decimal places will be truncated.
accuracy – Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. Defaults to 16 if not specified.
context – Context is a numeric value representing the photo’s geotagginess beyond latitude and longitude. For example, you may wish to indicate that a photo was taken "indoors" or "outdoors". <br /><br /> The current list of context IDs is :<br /><br/><ul><li><strong>0</strong>, not defined.</li><li><strong>1</strong>, indoors.</li><li><strong>2</strong>, outdoors.</li></ul><br /> The default context for geotagged photos is 0, or "not defined"
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Required arguments missing.: Some or all of the required arguments were not supplied.
3 – Not a valid latitude.: The latitude argument failed validation.
4 – Not a valid longitude.: The longitude argument failed validation.
5 – Not a valid accuracy.: The accuracy argument failed validation.
6 – Server error.: There was an unexpected problem setting location information to the photo.
7 – User has not configured default viewing settings for location data.: Before users may assign location data to a photo they must define who, by default, may view that information. Users can edit this preference at <a href="http://www.flickr.com/account/geo/privacy/">http://www.flickr.com/account/geo/privacy/</a>
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
is_public : string? | ||||||||||||||||||||||||||||||||
is_contact : string? | ||||||||||||||||||||||||||||||||
is_friend : string? | ||||||||||||||||||||||||||||||||
is_family : string? | ||||||||||||||||||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
is_public – 1 to set viewing permissions for the photo’s location data to public, 0 to set it to private.
is_contact – 1 to set viewing permissions for the photo’s location data to contacts, 0 to set it to private.
is_friend – 1 to set viewing permissions for the photo’s location data to friends, 0 to set it to private.
is_family – 1 to set viewing permissions for the photo’s location data to family, 0 to set it to private.
photo_id – The id of the photo to get permissions for.
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Photo has no location information: The photo requested has no location data or is not viewable by the calling user.
3 – Required arguments missing.: Some or all of the required arguments were not supplied.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The photo to return information for.
1 – Photo not found: The photo id passed was not the id of a valid photo.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
count : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
just_friends : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
single_photo : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
include_self : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
count – Number of photos to return. Defaults to 10, maximum 50. This is only used if <code>single_photo</code> is not passed.
just_friends – set as 1 to only show photos from friends and family (excluding regular contacts).
single_photo – Only fetch one photo (the latest) per contact, instead of all photos in chronological order.
include_self – Set to 1 to include photos from the calling user.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields include: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update. For more information see extras under <a href="/services/api/flickr.photos.search.html">flickr.photos.search</a>.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||||||||||
count : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
just_friends : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
single_photo : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
include_self : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch photos for.
count – Number of photos to return. Defaults to 10, maximum 50. This is only used if <code>single_photo</code> is not passed.
just_friends – set as 1 to only show photos from friends and family (excluding regular contacts).
single_photo – Only fetch one photo (the latest) per contact, instead of all photos in chronological order.
include_self – Set to 1 to include photos from the user specified by user_id.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update.
1 – User not found: The user NSID passed was not a valid user NSID.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch the context for.
1 – Photo not found: The photo id passed was not a valid photo id, or was the id of a photo that the calling user does not have permission to view.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
dates : (or/c #f string?) = #f | ||||||||||||||||||||
taken_dates : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
dates – A comma delimited list of unix timestamps, denoting the periods to return counts for. They should be specified <b>smallest first</b>.
taken_dates – A comma delimited list of mysql datetimes, denoting the periods to return counts for. They should be specified <b>smallest first</b>.
1 – No dates specified: Neither dates nor taken_dates were specified.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
secret : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch information for.
secret – The secret for the photo. If the correct secret is passed then permissions checking is skipped. This enables the ’sharing’ of individual photos by passing around the id and secret.
1 – Photo not found: The photo id was either invalid or was for a photo not viewable by the calling user.
2 – Permission denied: The owner of the photo does not want to share EXIF data.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
page : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The ID of the photo to fetch the favoriters list for.
page – The page of results to return. If this argument is omitted, it defaults to 1.
per_page – Number of usres to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50.
1 – Photo not found: The specified photo does not exist, or the calling user does not have permission to view it.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
secret : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to get information for.
secret – The secret for the photo. If the correct secret is passed then permissions checking is skipped. This enables the ’sharing’ of individual photos by passing around the id and secret.
1 – Photo not found.: The photo id was either invalid or was for a photo not viewable by the calling user.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
privacy_filter – Return photos only matching a certain privacy level. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to get permissions for.
1 – Photo not found: The photo id passed was not a valid photo id of a photo belonging to the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – bad value for jump_to, must be valid photo id.:
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch size information for.
1 – Photo not found: The photo id passed was not a valid photo id.
2 – Permission denied: The calling user does not have permission to view the photo.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
privacy_filter – Return photos only matching a certain privacy level. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sort : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
privacy_filter – Return photos only matching a certain privacy level. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
sort – The order in which to sort returned photos. Deafults to date-posted-desc. The possible values are: date-posted-asc, date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, and interestingness-asc.
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sort : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
privacy_filter – Return photos only matching a certain privacy level. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
sort – The order in which to sort returned photos. Deafults to date-posted-desc. The possible values are: date-posted-asc, date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, and interestingness-asc.
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
license_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The photo to update the license for.
license_id – The license to apply, or 0 (zero) to remove the current license. Note : as of this writing the "no known copyright restrictions" license (7) is not a valid argument.
1 – Photo not found: The specified id was not the id of a valif photo owner by the calling user.
2 – License not found: The license id was not valid.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||||||
note_x : string? | ||||||||||||||||||||||||||||||||||||
note_y : string? | ||||||||||||||||||||||||||||||||||||
note_w : string? | ||||||||||||||||||||||||||||||||||||
note_h : string? | ||||||||||||||||||||||||||||||||||||
note_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add a note to
note_x – The left coordinate of the note
note_y – The top coordinate of the note
note_w – The width of the note
note_h – The height of the note
note_text – The description of the note
1 – Photo not found: The photo id passed was not a valid photo id
2 – User cannot add notes: The calling user does not have permission to add a note to this photo
3 – Missing required arguments: One or more of the required arguments were not supplied.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
note_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
note_id – The id of the note to delete
1 – Note not found: The note id passed was not a valid note id
2 – User cannot delete note: The calling user does not have permission to delete the specified note
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
note_id : string? | ||||||||||||||||||||||||||||||||||||
note_x : string? | ||||||||||||||||||||||||||||||||||||
note_y : string? | ||||||||||||||||||||||||||||||||||||
note_w : string? | ||||||||||||||||||||||||||||||||||||
note_h : string? | ||||||||||||||||||||||||||||||||||||
note_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
note_id – The id of the note to edit
note_x – The left coordinate of the note
note_y – The top coordinate of the note
note_w – The width of the note
note_h – The height of the note
note_text – The description of the note
1 – Note not found: The note id passed was not a valid note id
2 – User cannot edit note: The calling user does not have permission to edit the specified note
3 – Missing required arguments: One or more of the required arguments were not supplied.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||||||
person_x : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
person_y : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
person_w : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
person_h : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to add a person to.
user_id – The NSID of the user to add to the photo.
person_x – The left-most pixel co-ordinate of the box around the person.
person_y – The top-most pixel co-ordinate of the box around the person.
person_w – The width (in pixels) of the box around the person.
person_h – The height (in pixels) of the box around the person.
1 – Person not found: The NSID passed was not a valid user id.
2 – Photo not found: The photo id passed was not a valid photo id.
3 – User cannot add this person to photos: The person being added to the photo does not allow the calling user to add them.
4 – User cannot add people to that photo: The owner of the photo doesn’t allow the calling user to add people to their photos.
5 – Person can’t be tagged in that photo: The person being added to the photo does not want to be identified in this photo.
6 – Some co-ordinate paramters were blank: Not all of the co-ordinate parameters (person_x, person_y, person_w, person_h) were passed with valid values.
7 – Can’t add that person to a non-public photo: You can only add yourself to another member’s non-public photos.
8 – Too many people in that photo: The maximum number of people has already been added to the photo.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
user_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to remove a person from.
user_id – The NSID of the person to remove from the photo.
1 – Person not found: The NSID passed was not a valid user id.
2 – Photo not found: The photo id passed was not a valid photo id.
3 – User cannot remove that person: The calling user did not have permission to remove this person from this photo.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
user_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to edit a person in.
user_id – The NSID of the person whose bounding box you want to remove.
1 – Person not found: The NSID passed was not a valid user id.
2 – Photo not found: The photo id passed was not a valid photo id.
3 – User cannot edit that person in that photo: The calling user is neither the person depicted in the photo nor the person who added the bounding box.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||||||
user_id : string? | ||||||||||||||||||||||||||||||||||||
person_x : string? | ||||||||||||||||||||||||||||||||||||
person_y : string? | ||||||||||||||||||||||||||||||||||||
person_w : string? | ||||||||||||||||||||||||||||||||||||
person_h : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to edit a person in.
user_id – The NSID of the person to edit in a photo.
person_x – The left-most pixel co-ordinate of the box around the person.
person_y – The top-most pixel co-ordinate of the box around the person.
person_w – The width (in pixels) of the box around the person.
person_h – The height (in pixels) of the box around the person.
1 – Person not found: The NSID passed was not a valid user id.
2 – Photo not found: The photo id passed was not a valid photo id.
3 – User cannot edit that person in that photo: The calling user did not originally add this person to the photo, and is not the person in question.
4 – Some co-ordinate paramters were blank: Not all of the co-ordinate parameters (person_x, person_y, person_w, person_h) were passed with valid values.
5 – No co-ordinates given: None of the co-ordinate parameters were valid.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to get a list of people for.
1 – Photo not found: The photo id passed was not a valid photo id.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
min_date : string? | ||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
min_date – A Unix timestamp indicating the date from which modifications should be compared.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Required argument missing.: Some or all of the required arguments were not supplied.
2 – Not a valid date: The date argument did not pass validation.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
tag_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tag_id – The tag to remove from the photo. This parameter should contain a tag id, as returned by <a href="/services/api/flickr.photos.getInfo.html">flickr.photos.getInfo</a>.
1 – Tag not found: The calling user doesn’t have permission to delete the specified tag. This could mean it belongs to someone else, or doesn’t exist.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tags : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tag_mode : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
text : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
license : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sort : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bbox : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
accuracy : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
safe_search : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
content_type : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
machine_tags : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
machine_tag_mode : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
group_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
contacts : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
has_geo : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
geo_context : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
lat : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
lon : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
radius : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
radius_units : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
is_commons : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
in_gallery : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
is_getty : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user who’s photo to search. If this parameter isn’t passed then everybody’s public photos will be searched. A value of "me" will search against the calling user’s photos for authenticated calls.
tags – A comma-delimited list of tags. Photos with one or more of the tags listed will be returned. You can exclude results that match a term by prepending it with a - character.
tag_mode – Either ’any’ for an OR combination of tags, or ’all’ for an AND combination. Defaults to ’any’ if not specified.
text – A free text search. Photos who’s title, description or tags contain the text will be returned. You can exclude results that match a term by prepending it with a - character.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
license – The license id for photos (for possible values see the flickr.photos.licenses.getInfo method). Multiple licenses may be comma-separated.
sort – The order in which to sort returned photos. Deafults to date-posted-desc (unless you are doing a radial geo query, in which case the default sorting is by ascending distance from the point specified). The possible values are: date-posted-asc, date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, interestingness-asc, and relevance.
privacy_filter – Return photos only matching a certain privacy level. This only applies when making an authenticated call to view photos you own. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
bbox – A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched. <br /><br /> The 4 values represent the bottom-left corner of the box and the top-right corner, minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude. <br /><br /> Longitude has a range of -180 to 180 , latitude of -90 to 90. Defaults to -180, -90, 180, 90 if not specified. <br /><br /> Unlike standard photo queries, geo (or bounding box) queries will only return 250 results per page. <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters — If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
accuracy – Recorded accuracy level of the location information. Current range is 1-16 : <ul><li>World level is 1</li><li>Country is ~3</li><li>Region is ~6</li><li>City is ~11</li><li>Street is ~16</li></ul> Defaults to maximum value if not specified.
safe_search – Safe search setting: <ul><li>1 for safe.</li><li>2 for moderate.</li><li>3 for restricted.</li></ul> (Please note: Un-authed calls can only see Safe content.)
content_type – Content Type setting: <ul><li>1 for photos only.</li><li>2 for screenshots only.</li><li>3 for ’other’ only.</li><li>4 for photos and screenshots.</li><li>5 for screenshots and ’other’.</li><li>6 for photos and ’other’.</li><li>7 for photos, screenshots, and ’other’ (all).</li></ul>
machine_tags – Aside from passing in a fully formed machine tag, there is a special syntax for searching on specific properties : <ul><li>Find photos using the ’dc’ namespace : <code>"machine_tags" =>"dc:"</code></li><li> Find photos with a title in the ’dc’ namespace : <code>"machine_tags" =>"dc:title="</code></li><li>Find photos titled "mr. camera" in the ’dc’ namespace : <code>"machine_tags" =>"dc:title=\"mr. camera\"</code></li><li>Find photos whose value is "mr. camera" : <code>"machine_tags" =>"*:*=\"mr. camera\""</code></li><li>Find photos that have a title, in any namespace : <code>"machine_tags" =>"*:title="</code></li><li>Find photos that have a title, in any namespace, whose value is "mr. camera" : <code>"machine_tags" =>"*:title=\"mr. camera\""</code></li><li>Find photos, in the ’dc’ namespace whose value is "mr. camera" : <code>"machine_tags" =>"dc:*=\"mr. camera\""</code></li></ul> Multiple machine tags may be queried by passing a comma-separated list. The number of machine tags you can pass in a single query depends on the tag mode (AND or OR) that you are querying with. "AND" queries are limited to (16) machine tags. "OR" queries are limited to (8).
machine_tag_mode – Either ’any’ for an OR combination of tags, or ’all’ for an AND combination. Defaults to ’any’ if not specified.
group_id – The id of a group who’s pool to search. If specified, only matching photos posted to the group’s pool will be returned.
contacts – Search your contacts. Either ’all’ or ’ff’ for just friends and family. (Experimental)
woe_id – A 32-bit identifier that uniquely represents spatial entities. (not used if bbox argument is present). <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
place_id – A Flickr place id. (not used if bbox argument is present). <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
has_geo – Any photo that has been geotagged, or if the value is "0" any photo that has <i>not</i> been geotagged. <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
geo_context – Geo context is a numeric value representing the photo’s geotagginess beyond latitude and longitude. For example, you may wish to search for photos that were taken "indoors" or "outdoors". <br /><br /> The current list of context IDs is :<br /><br/><ul><li><strong>0</strong>, not defined.</li><li><strong>1</strong>, indoors.</li><li><strong>2</strong>, outdoors.</li></ul><br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
lat – A valid latitude, in decimal format, for doing radial geo queries. <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
lon – A valid longitude, in decimal format, for doing radial geo queries. <br /><br /> Geo queries require some sort of limiting agent in order to prevent the database from crying. This is basically like the check against "parameterless searches" for queries without a geo component. <br /><br /> A tag, for instance, is considered a limiting agent as are user defined min_date_taken and min_date_upload parameters &emdash; If no limiting factor is passed we return only photos added in the last 12 hours (though we may extend the limit in the future).
radius – A valid radius used for geo queries, greater than zero and less than 20 miles (or 32 kilometers), for use with point-based geo queries. The default value is 5 (km).
radius_units – The unit of measure when doing radial geo queries. Valid options are "mi" (miles) and "km" (kilometers). The default is "km".
is_commons – Limit the scope of the search to only photos that are part of the <a href="http://flickr.com/commons">Flickr Commons project</a>. Default is false.
in_gallery – Limit the scope of the search to only photos that are in a <a href="http://www.flickr.com/help/galleries/">gallery</a>? Default is false, search all photos.
is_getty – Limit the scope of the search to only photos that are for sale on Getty. Default is false.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_m</code>, <code>url_o</code>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – Too many tags in ALL query: When performing an ’all tags’ search, you may not specify more than 20 tags to join together.
2 – Unknown user: A user_id was passed which did not match a valid flickr user.
3 – Parameterless searches have been disabled: To perform a search with no parameters (to get the latest public photos, please use flickr.photos.getRecent instead).
4 – You don’t have permission to view this pool: The logged in user (if any) does not have permission to view the pool for this group.
10 – Sorry, the Flickr search API is not currently available.: The Flickr API search databases are temporarily unavailable
11 – No valid machine tags: The query styntax for the machine_tags argument did not validate.
12 – Exceeded maximum allowable machine tags: The maximum number of machine tags in a single query was exceeded.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
content_type : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set the adultness of.
content_type – The content type of the photo. Must be one of: 1 for Photo, 2 for Screenshot, and 3 for Other.
1 – Photo not found: The photo id passed was not a valid photo id of a photo belonging to the calling user.
2 – Required arguments missing: Some or all of the required arguments were not supplied.
3 – Change not allowed: Changing the content type of this photo is not allowed.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||
date_posted : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
date_taken : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
date_taken_granularity : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to edit dates for.
date_posted – The date the photo was uploaded to flickr (see the <a href="/services/api/misc.dates.html">dates documentation</a>)
date_taken – The date the photo was taken (see the <a href="/services/api/misc.dates.html">dates documentation</a>)
date_taken_granularity – The granularity of the date the photo was taken (see the <a href="/services/api/misc.dates.html">dates documentation</a>)
1 – Photo not found: The photo id was not the id of a valid photo belonging to the calling user.
2 – Not enough arguments: No dates were specified to be changed.
3 – Invalid granularity: The value passed for ’granularity’ was not a valid flickr date granularity.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||
description : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set information for.
title – The title for the photo.
description – The description for the photo.
1 – Photo not found: The photo id passed was not the id of a photo belonging to the calling user. It might be an invalid id, or the photo might be owned by another user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||||||||||||||
is_public : string? | ||||||||||||||||||||||||||||||||||||
is_friend : string? | ||||||||||||||||||||||||||||||||||||
is_family : string? | ||||||||||||||||||||||||||||||||||||
perm_comment : string? | ||||||||||||||||||||||||||||||||||||
perm_addmeta : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set permissions for.
is_public – 1 to set the photo to public, 0 to set it to private.
is_friend – 1 to make the photo visible to friends when private, 0 to not.
is_family – 1 to make the photo visible to family when private, 0 to not.
perm_comment – who can add comments to the photo and it’s notes. one of:<br /><code>0</code>: nobody<br /><code>1</code>: friends & family<br /><code>2</code>: contacts<br /><code>3</code>: everybody
perm_addmeta – who can add notes and tags to the photo. one of:<br /><code>0</code>: nobody / just the owner<br /><code>1</code>: friends & family<br /><code>2</code>: contacts<br /><code>3</code>: everybody
1 – Photo not found: The photo id passed was not a valid photo id of a photo belonging to the calling user.
2 – Required arguments missing: Some or all of the required arguments were not supplied.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||||||
safety_level : (or/c #f string?) = #f | ||||||||||||||||||||||||
hidden : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set the adultness of.
safety_level – The safety level of the photo. Must be one of: 1 for Safe, 2 for Moderate, and 3 for Restricted.
hidden – Whether or not to additionally hide the photo from public searches. Must be either 1 for Yes or 0 for No.
1 – Photo not found: The photo id passed was not a valid photo id of a photo belonging to the calling user.
2 – Invalid or missing arguments: Neither a valid safety level nor a hidden value were passed.
3 – Change not allowed: Changing the safety level of this photo is not allowed.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
tags : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to set tags for.
tags – All tags for the photo (as a single space-delimited string).
1 – Photo not found: The photo id passed was not the id of a photo belonging to the calling user. It might be an invalid id, or the photo might be owned by another user.
2 – Maximum number of tags reached: The number of tags specified exceeds the limit for the photo. No tags were modified.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
degrees : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to rotate.
degrees – The amount of degrees by which to rotate the photo (clockwise) from it’s current orientation. Valid values are 90, 180 and 270.
1 – Photo not found: The photo id was invalid or did not belong to the calling user.
2 – Invalid rotation: The rotation degrees were an invalid value.
3 – Temporary failure: There was a problem either rotating the image or storing the rotated versions.
4 – Rotation disabled: The rotation service is currently disabled.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
tickets : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tickets – A comma-delimited list of ticket ids
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to add a photo to.
photo_id – The id of the photo to add to the set.
1 – Photoset not found: The photoset id passed was not the id of avalid photoset owned by the calling user.
2 – Photo not found: The photo id passed was not the id of a valid photo owned by the calling user.
3 – Photo already in set: The photo is already a member of the photoset.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||||||
comment_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to add a comment to.
comment_text – Text of the comment
1 – Photoset not found:
8 – Blank comment:
9 – User is posting comments too fast.: The user has reached the limit for number of comments posted during a specific time period. Wait a bit and try again.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
comment_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
comment_id – The id of the comment to delete from a photoset.
2 – Comment not found.: The comment id passed was not a valid comment id
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
comment_id : string? | ||||||||||||||||||||||||
comment_text : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
comment_id – The id of the comment to edit.
comment_text – Update the comment to this text.
2 – Comment not found.: The comment id passed was not a valid comment id.
8 – Blank comment.: Comment text can’t be blank.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photoset_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to fetch comments for.
1 – Photoset not found.: The photoset id was invalid.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||
description : (or/c #f string?) = #f | ||||||||||||||||||||||||
primary_photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
title – A title for the photoset.
description – A description of the photoset. May contain limited html.
primary_photo_id – The id of the photo to represent this set. The photo must belong to the calling user.
1 – No title specified: No title parameter was passed in the request.
2 – Photo not found: The primary photo id passed was not a valid photo id or does not belong to the calling user.
3 – Can’t create any more sets: The user has reached their maximum number of photosets limit.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photoset_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to delete. It must be owned by the calling user.
1 – Photoset not found: The photoset id passed was not a valid photoset id or did not belong to the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||||||
title : string? | ||||||||||||||||||||||||
description : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to modify.
title – The new title for the photoset.
description – A description of the photoset. May contain limited html.
1 – Photoset not found: The photoset id passed was not a valid photoset id or did not belong to the calling user.
2 – No title specified: No title parameter was passed in the request.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||||||||||
primary_photo_id : string? | ||||||||||||||||||||||||||||
photo_ids : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to modify. The photoset must belong to the calling user.
primary_photo_id – The id of the photo to use as the ’primary’ photo for the set. This id must also be passed along in photo_ids list argument.
photo_ids – A comma-delimited list of photo ids to include in the set. They will appear in the set in the order sent. This list <b>must</b> contain the primary photo id. All photos must belong to the owner of the set. This list of photos replaces the existing list. Call flickr.photosets.addPhoto to append a photo to a set.
1 – Photoset not found: The photoset id passed was not a valid photoset id or did not belong to the calling user.
2 – Photo not found: One or more of the photo ids passed was not a valid photo id or does not belong to the calling user.
3 – Primary photo not found: The primary photo id passed was not a valid photo id or does not belong to the calling user.
4 – Primary photo not in list: The primary photo id passed did not appear in the photo id list.
5 – Empty photos list: No photo ids were passed.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photo_id : string? | ||||||||||||||||||||
photoset_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to fetch the context for.
photoset_id – The id of the photoset for which to fetch the photo’s context.
1 – Photo not found: The photo id passed was not a valid photo id, or was the id of a photo that the calling user does not have permission to view.
2 – Photo not in set: The specified photo is not in the specified set.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photoset_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The ID of the photoset to fetch information for.
1 – Photoset not found: The photoset id was not valid.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to get a photoset list for. If none is specified, the calling user is assumed.
1 – User not found: The user NSID passed was not a valid user NSID and the calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||||||||||||||||||
extras : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
privacy_filter : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
media : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to return the photos for.
extras – A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o
privacy_filter – Return photos only matching a certain privacy level. This only applies when making an authenticated call to view a photoset you own. Valid values are: <ul><li>1 public photos</li><li>2 private photos visible to friends</li><li>3 private photos visible to family</li><li>4 private photos visible to friends & family</li><li>5 completely private photos</li></ul>
per_page – Number of photos to return per page. If this argument is omitted, it defaults to 500. The maximum allowed value is 500.
page – The page of results to return. If this argument is omitted, it defaults to 1.
media – Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
1 – Photoset not found: The photoset id passed was not a valid photoset id.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photoset_ids : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_ids – A comma delimited list of photoset IDs, ordered with the set to show first, first in the list. Any set IDs not given in the list will be set to appear at the end of the list, ordered by their IDs.
1 – Set not found: One of the photoset ids passed was not the id of a valid photoset belonging to the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
photoset_id : string? | ||||||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photoset_id – The id of the photoset to remove a photo from.
photo_id – The id of the photo to remove from the set.
1 – Photoset not found: The photoset id passed was not the id of avalid photoset owned by the calling user.
2 – Photo not found: The photo id passed was not the id of a valid photo belonging to the calling user.
3 – Photo not in set: The photo is not a member of the photoset.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
query : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
query – The query string to use for place ID lookups
1 – Required parameter missing: One or more required parameters was not included with the API call.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
lat : string? | ||||||||||||||||||||||||
lon : string? | ||||||||||||||||||||||||
accuracy : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
lat – The latitude whose valid range is -90 to 90. Anything more than 4 decimal places will be truncated.
lon – The longitude whose valid range is -180 to 180. Anything more than 4 decimal places will be truncated.
accuracy – Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. The default is 16.
1 – Required arguments missing: One or more required parameters was not included with the API request.
2 – Not a valid latitude: The latitude argument failed validation.
3 – Not a valid longitude: The longitude argument failed validation.
4 – Not a valid accuracy: The accuracy argument failed validation.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_id – A Flickr Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
woe_id – A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
1 – Required parameter missing: One or more required parameter is missing from the API call.
2 – Not a valid Places ID: An invalid Places (or WOE) ID was passed with the API call.
3 – Place not found: No place could be found for the Places (or WOE) ID passed to the API call.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||
woe_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_id – A Flickr Places ID. <span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
woe_id – A Where On Earth (WOE) ID. <span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
1 – Required parameter missing: One or more required parameter is missing from the API call.
2 – Not a valid Places ID: An invalid Places (or WOE) ID was passed with the API call.
3 – Place not found: No place could be found for the Places (or WOE) ID passed to the API call.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
url : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
url – A flickr.com/places URL in the form of /country/region/city. For example: /Canada/Quebec/Montreal
2 – Place URL required.: The flickr.com/places URL was not passed with the API method.
3 – Place not found.: Unable to find a valid place for the places URL.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||
woe_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_id – A Flickr Places ID. <span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
woe_id – A Where On Earth (WOE) ID. <span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
1 – Required parameter missing: One or more required parameter is missing from the API call.
2 – Not a valid Places ID: An invalid Places (or WOE) ID was passed with the API call.
3 – Place not found: No place could be found for the Places (or WOE) ID passed to the API call.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
place_type_id : string? | ||||||||||||||||||||||||||||
date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_type_id – The numeric ID for a specific place type to cluster photos by. <br /><br /> Valid place type IDs are : <ul><li><strong>22</strong>: neighbourhood</li><li><strong>7</strong>: locality</li><li><strong>8</strong>: region</li><li><strong>12</strong>: country</li><li><strong>29</strong>: continent</li></ul>
date – A valid date in YYYY-MM-DD format. The default is yesterday.
woe_id – Limit your query to only those top places belonging to a specific Where on Earth (WOE) identifier.
place_id – Limit your query to only those top places belonging to a specific Flickr Places identifier.
1 – Required parameter missing: One or more required parameters with missing from your request.
2 – Not a valid place type.: An unknown or unsupported place type ID was passed with your request.
3 – Not a valid date.: The date argument passed with your request is invalid.
4 – Not a valid Place ID: An invalid Places (or WOE) identifier was included with your request.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
bbox : string? | ||||||||||||||||||||||||||||
place_type : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
place_type_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
bbox – A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched. The 4 values represent the bottom-left corner of the box and the top-right corner, minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude.
place_type – The name of place type to using as the starting point to search for places in a bounding box. Valid placetypes are: <ul><li>neighbourhood</li><li>locality</li><li>county</li><li>region</li><li>country</li><li>continent</li></ul><br /><span style="font-style:italic;">The "place_type" argument has been deprecated in favor of the "place_type_id" argument. It won’t go away but it will not be added to new methods. A complete list of place type IDs is available using the <a href="http://www.flickr.com/services/api/flickr.places.getPlaceTypes.html">flickr.places.getPlaceTypes</a> method. (While optional, you must pass either a valid place type or place type ID.)</span>
place_type_id – The numeric ID for a specific place type to cluster photos by. <br /><br /> Valid place type IDs are : <ul><li><strong>22</strong>: neighbourhood</li><li><strong>7</strong>: locality</li><li><strong>8</strong>: region</li><li><strong>12</strong>: country</li><li><strong>29</strong>: continent</li></ul><br /><span style="font-style:italic;">(While optional, you must pass either a valid place type or place type ID.)</span>
1 – Required parameters missing: One or more required parameter is missing from the API call.
2 – Not a valid bbox: The bbox argument was incomplete or incorrectly formatted
3 – Not a valid place type: An invalid place type was included with your request.
4 – Bounding box exceeds maximum allowable size for place type: The bounding box passed along with your request was too large for the request place type.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_type : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_type_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
threshold : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
contacts : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_type – A specific place type to cluster photos by. <br /><br /> Valid place types are : <ul><li><strong>neighbourhood</strong> (and neighborhood)</li><li><strong>locality</strong></li><li><strong>region</strong></li><li><strong>country</strong></li><li><strong>continent</strong></li></ul><br /><span style="font-style:italic;">The "place_type" argument has been deprecated in favor of the "place_type_id" argument. It won’t go away but it will not be added to new methods. A complete list of place type IDs is available using the <a href="http://www.flickr.com/services/api/flickr.places.getPlaceTypes.html">flickr.places.getPlaceTypes</a> method. (While optional, you must pass either a valid place type or place type ID.)</span>
place_type_id – The numeric ID for a specific place type to cluster photos by. <br /><br /> Valid place type IDs are : <ul><li><strong>22</strong>: neighbourhood</li><li><strong>7</strong>: locality</li><li><strong>8</strong>: region</li><li><strong>12</strong>: country</li><li><strong>29</strong>: continent</li></ul><br /><span style="font-style:italic;">(While optional, you must pass either a valid place type or place type ID.)</span>
woe_id – A Where on Earth identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (WOE ID <strong>23424977</strong>).<br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
place_id – A Flickr Places identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (Place ID <strong>4KO02SibApitvSBieQ</strong>). <br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
threshold – The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.<br /><br /> For example if your contacts only have <strong>3</strong> photos taken in the locality of Montreal</strong> (WOE ID 3534) but your threshold is set to <strong>5</strong> then those photos will be "rolled up" and included instead with a place record for the region of Quebec (WOE ID 2344924).
contacts – Search your contacts. Either ’all’ or ’ff’ for just friends and family. (Default is all)
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
1 – Places for contacts are not available at this time: Places for contacts have been disabled or are otherwise not available.
2 – Required parameter missing: One or more of the required parameters was not included with your request.
3 – Not a valid place type.: An invalid place type was included with your request.
4 – Not a valid Place ID: An invalid Places (or WOE) identifier was included with your request.
5 – Not a valid threshold: The threshold passed was invalid.
6 – Not a valid contacts type: Contacts must be either "all" or "ff" (friends and family).
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_type_id : string? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
threshold : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tags : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tag_mode : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
machine_tags : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
machine_tag_mode : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_type_id – The numeric ID for a specific place type to cluster photos by. <br /><br /> Valid place type IDs are : <ul><li><strong>22</strong>: neighbourhood</li><li><strong>7</strong>: locality</li><li><strong>8</strong>: region</li><li><strong>12</strong>: country</li><li><strong>29</strong>: continent</li></ul>
woe_id – A Where on Earth identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (WOE ID <strong>23424977</strong>). <br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
place_id – A Flickr Places identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (Place ID <strong>4KO02SibApitvSBieQ</strong>). <br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
threshold – The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.<br /><br /> For example if you only have <strong>3</strong> photos taken in the locality of Montreal</strong> (WOE ID 3534) but your threshold is set to <strong>5</strong> then those photos will be "rolled up" and included instead with a place record for the region of Quebec (WOE ID 2344924).
tags – A comma-delimited list of tags. Photos with one or more of the tags listed will be returned.
tag_mode – Either ’any’ for an OR combination of tags, or ’all’ for an AND combination. Defaults to ’any’ if not specified.
machine_tags – Aside from passing in a fully formed machine tag, there is a special syntax for searching on specific properties : <ul><li>Find photos using the ’dc’ namespace : <code>"machine_tags" =>"dc:"</code></li><li> Find photos with a title in the ’dc’ namespace : <code>"machine_tags" =>"dc:title="</code></li><li>Find photos titled "mr. camera" in the ’dc’ namespace : <code>"machine_tags" =>"dc:title=\"mr. camera\"</code></li><li>Find photos whose value is "mr. camera" : <code>"machine_tags" =>"*:*=\"mr. camera\""</code></li><li>Find photos that have a title, in any namespace : <code>"machine_tags" =>"*:title="</code></li><li>Find photos that have a title, in any namespace, whose value is "mr. camera" : <code>"machine_tags" =>"*:title=\"mr. camera\""</code></li><li>Find photos, in the ’dc’ namespace whose value is "mr. camera" : <code>"machine_tags" =>"dc:*=\"mr. camera\""</code></li></ul> Multiple machine tags may be queried by passing a comma-separated list. The number of machine tags you can pass in a single query depends on the tag mode (AND or OR) that you are querying with. "AND" queries are limited to (16) machine tags. "OR" queries are limited to (8).
machine_tag_mode – Either ’any’ for an OR combination of tags, or ’all’ for an AND combination. Defaults to ’any’ if not specified.
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
place_type_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
place_type : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
threshold : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_type_id – The numeric ID for a specific place type to cluster photos by. <br /><br /> Valid place type IDs are : <ul><li><strong>22</strong>: neighbourhood</li><li><strong>7</strong>: locality</li><li><strong>8</strong>: region</li><li><strong>12</strong>: country</li><li><strong>29</strong>: continent</li></ul><br /><span style="font-style:italic;">The "place_type" argument has been deprecated in favor of the "place_type_id" argument. It won’t go away but it will not be added to new methods. A complete list of place type IDs is available using the <a href="http://www.flickr.com/services/api/flickr.places.getPlaceTypes.html">flickr.places.getPlaceTypes</a> method. (While optional, you must pass either a valid place type or place type ID.)</span>
place_type – A specific place type to cluster photos by. <br /><br /> Valid place types are : <ul><li><strong>neighbourhood</strong> (and neighborhood)</li><li><strong>locality</strong></li><li><strong>region</strong></li><li><strong>country</strong></li><li><strong>continent</strong></li></ul><br /><span style="font-style:italic;">(While optional, you must pass either a valid place type or place type ID.)</span>
woe_id – A Where on Earth identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (WOE ID <strong>23424977</strong>).<br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
place_id – A Flickr Places identifier to use to filter photo clusters. For example all the photos clustered by <strong>locality</strong> in the United States (Place ID <strong>4KO02SibApitvSBieQ</strong>).<br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
threshold – The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.<br /><br /> For example if you only have <strong>3</strong> photos taken in the locality of Montreal</strong> (WOE ID 3534) but your threshold is set to <strong>5</strong> then those photos will be "rolled up" and included instead with a place record for the region of Quebec (WOE ID 2344924).
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
1 – Places for user are not available at this time: Places for user have been disabled or are otherwise not available.
2 – Required parameter missing: One or more of the required parameters was not included with your request.
3 – Not a valid place type: An invalid place type was included with your request.
4 – Not a valid Place ID: An invalid Places (or WOE) identifier was included with your request.
5 – Not a valid threshold: The threshold passed was invalid.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
place_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
place_id – A Flickr Places ID
2 – Place ID required.:
3 – Place not found.:
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
url : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
url – A Flickr Places URL. <br /><br /> Flickr Place URLs are of the form /country/region/city
2 – Place URL required.:
3 – Place not found.:
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
woe_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
place_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
min_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
max_upload_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
min_taken_date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
max_taken_date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
woe_id – A Where on Earth identifier to use to filter photo clusters.<br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
place_id – A Flickr Places identifier to use to filter photo clusters.<br /><br /><span style="font-style:italic;">(While optional, you must pass either a valid Places ID or a WOE ID.)</span>
min_upload_date – Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp.
max_upload_date – Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp.
min_taken_date – Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime.
max_taken_date – Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime.
1 – Required parameter missing: One or more parameters was not included with the API request
2 – Not a valid Places ID: An invalid Places (or WOE) identifier was included with your request.
3 – Place not found: An invalid Places (or WOE) identifier was included with your request.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
method_name : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
method_name – The name of the method to fetch information for.
1 – Method not found: The requested method was not found.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||||||
collection_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
collection_id – The id of the collection to get stats for. If not provided, stats for all collections will be returned.
per_page – Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Collection not found: The collection id was either invalid or was for a collection not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||||||||||
domain : string? | ||||||||||||||||||||||||||||||||||||
collection_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
domain – The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.
collection_id – The id of the collection to get stats for. If not provided, stats for all collections will be returned.
per_page – Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Collection not found: The collection id was either invalid or was for a collection not owned by the calling user.
5 – Invalid domain: The domain provided is not in the expected format.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||
collection_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
collection_id – The id of the collection to get stats for.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Collection not found: The collection id was either invalid or was for a collection not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||
→ (listof xexpr?) | ||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||
photo_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
photo_id – The id of the photo to get stats for. If not provided, stats for all photos will be returned.
per_page – Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photo not found: The photo id was either invalid or was for a photo not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||||||
domain : string? | ||||||||||||||||||||||||||||||||
photo_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
domain – The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.
photo_id – The id of the photo to get stats for. If not provided, stats for all photos will be returned.
per_page – Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photo not found: The photo id was either invalid or was for a photo not owned by the calling user.
5 – Invalid domain: The domain provided is not in the expected format.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||
photoset_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
photoset_id – The id of the photoset to get stats for. If not provided, stats for all sets will be returned.
per_page – Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photoset not found: The photoset id was either invalid or was for a set not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||||||
domain : string? | ||||||||||||||||||||||||||||||||
photoset_id : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
domain – The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.
photoset_id – The id of the photoset to get stats for. If not provided, stats for all sets will be returned.
per_page – Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photoset not found: The photoset id was either invalid or was for a set not owned by the calling user.
5 – Invalid domain: The domain provided is not in the expected format.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
date : string? | ||||||||||||||||||||
photoset_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
photoset_id – The id of the photoset to get stats for.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photoset not found: The photoset id was either invalid or was for a set not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
date : string? | ||||||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
photo_id – The id of the photo to get stats for.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
4 – Photo not found: The photo id was either invalid or was for a photo not owned by the calling user.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
per_page – Number of domains to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
date : string? | ||||||||||||||||||||||||||||
domain : string? | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
domain – The domain to return referrers for. This should be a hostname (eg: "flickr.com") with no protocol or pathname.
per_page – Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
5 – Invalid domain: The domain provided is not in the expected format.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
date : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||||||||||
date : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
sort : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
per_page : (or/c #f string?) = #f | ||||||||||||||||||||||||||||
page : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day. If no date is provided, all time view counts will be returned.
sort – The order in which to sort returned photos. Defaults to views. The possible values are views, comments and favorites. Other sort options are available through <a href="/services/api/flickr.photos.search.html">flickr.photos.search</a>.
per_page – Number of referrers to return per page. If this argument is omitted, it defaults to 25. The maximum allowed value is 100.
page – The page of results to return. If this argument is omitted, it defaults to 1.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
5 – Invalid sort: The sort provided is not valid
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
date : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
date – Stats will be returned for this date. This should be in either be in YYYY-MM-DD or unix timestamp format. A day according to Flickr Stats starts at midnight GMT for all users, and timestamps will automatically be rounded down to the start of the day. If no date is provided, all time view counts will be returned.
1 – User does not have stats: The user you have requested stats has not enabled stats on their account.
2 – No stats for that date: No stats are available for the date requested. Flickr only keeps stats data for the last 28 days.
3 – Invalid date: The date provided could not be parsed
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
tag : string? | ||||||||||||||||||||
cluster_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tag – The tag that this cluster belongs to.
cluster_id – The top three tags for the cluster, separated by dashes (just like the url).
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
tag : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tag – The tag to fetch clusters for.
1 – Tag cluster not found: The tag was invalid or no cluster exists for that tag.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
period : (or/c #f string?) = #f | ||||||||||||||||||||
count : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
period – The period for which to fetch hot tags. Valid values are <code>day</code> and <code>week</code> (defaults to <code>day</code>).
count – The number of tags to return. Defaults to 20. Maximum allowed value is 200.
1 – Invalid period: The specified period was not understood.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
photo_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
photo_id – The id of the photo to return tags for.
1 – Photo not found: The photo id passed was not a valid photo id.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the tag list for. If this argument is not specified, the currently logged in user (if any) is assumed.
1 – User not found: The user NSID passed was not a valid user NSID and the calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||||||
user_id : (or/c #f string?) = #f | ||||||||||||||||||||
count : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the tag list for. If this argument is not specified, the currently logged in user (if any) is assumed.
count – Number of popular tags to return. defaults to 10 when this argument is not present.
1 – User not found: The user NSID passed was not a valid user NSID and the calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
tag : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tag – The tag you want to retrieve all raw versions for.
1 – User not found: The calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
tag : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
tag – The tag to fetch related tags for.
1 – Tag not found: The tag argument was missing.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| |||||||||||||||||||||
api_sig : (or/c #f string?) = #f | |||||||||||||||||||||
auth_token : (or/c #f string?) = #f | |||||||||||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| |||||||||||||||||||||
api_sig : (or/c #f string?) = #f | |||||||||||||||||||||
auth_token : (or/c #f string?) = #f | |||||||||||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| |||||||||||||||||||||
api_sig : (or/c #f string?) = #f | |||||||||||||||||||||
auth_token : (or/c #f string?) = #f | |||||||||||||||||||||
api_key : string? = (current-api-key) |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
96 – Invalid signature: The passed signature was invalid.
97 – Missing signature: The call required signing but no signature was sent.
98 – Login failed / Invalid auth token: The login details or auth token passed were invalid.
99 – User not logged in / Insufficient permissions: The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
group_id : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
group_id – The NSID of the group to fetch the url for.
1 – Group not found: The NSID specified was not a valid group.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the url for. If omitted, the calling user is assumed.
1 – User not found: The NSID specified was not a valid user.
2 – No user specified: No user_id was passed and the calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
user_id : (or/c #f string?) = #f |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
user_id – The NSID of the user to fetch the url for. If omitted, the calling user is assumed.
1 – User not found: The NSID specified was not a valid user.
2 – No user specified: No user_id was passed and the calling user was not logged in.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
url : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
url – The gallery’s URL.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
url : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
url – The url to the group’s page or photo pool.
1 – Group not found: The passed URL was not a valid group page or photo pool url.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.
| ||||||||||||||||
→ (listof xexpr?) | ||||||||||||||||
api_sig : (or/c #f string?) = #f | ||||||||||||||||
auth_token : (or/c #f string?) = #f | ||||||||||||||||
api_key : string? = (current-api-key) | ||||||||||||||||
url : string? |
api_key – Your API application key. <a href="/services/api/misc.api_keys.html">See here</a> for more details.
url – The url to the user’s profile or photos page.
1 – User not found: The passed URL was not a valid user profile or photos url.
100 – Invalid API Key: The API key passed was not valid or has expired.
105 – Service currently unavailable: The requested service is temporarily unavailable.
111 – Format "xxx" not found: The requested response format was not found.
112 – Method "xxx" not found: The requested method was not found.
114 – Invalid SOAP envelope: The SOAP envelope send in the request could not be parsed.
115 – Invalid XML-RPC Method Call: The XML-RPC request document could not be parsed.
116 – Bad URL found: One or more arguments contained a URL that has been used for abuse on Flickr.