Flickr: Scheme API for Flickr
David Van Horn <dvanhorn@ccs.neu.edu>
(require (planet dvanhorn/flickr:2:2)) |
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.
((items |
() |
(item |
((comments "1") |
(id "395") |
(more "0") |
(owner "12037949754@N01") |
(photos "7") |
(primary "6521") |
(secret "5a3cc65d72") |
(server "2") |
(type "photoset") |
(views "33")) |
(title () "A set of photos") |
(activity |
() |
(event |
((dateadded "1144086424") |
(type "comment") |
(user "12037949754@N01") |
(username "Bees")) |
"yay"))) |
(item |
((comments "1") |
(faves "0") |
(id "10289") |
(more "0") |
(notes "0") |
(owner "12037949754@N01") |
(secret "34da0d3891") |
(server "2") |
(type "photo") |
(views "47")) |
(title () "A photo") |
(activity |
() |
(event |
((dateadded "1133806604") |
(type "comment") |
(user "12037949754@N01") |
(username "Bees")) |
"test") |
(event |
((dateadded "1118785229") |
(type "note") |
(user "12037949754@N01") |
(username "Bees")) |
"nice"))))) |
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.
((items |
() |
(item |
((commentsnew "1") |
(commentsold "1") |
(id "395") |
(more "0") |
(owner "12037949754@N01") |
(photos "7") |
(primary "6521") |
(secret "5a3cc65d72") |
(server "2") |
(type "photoset") |
(views "33")) |
(title () "A set of photos") |
(activity |
() |
(event |
((dateadded "1144086424") |
(type "comment") |
(user "12037949754@N01") |
(username "Bees")) |
"yay"))) |
(item |
((commentsnew "1") |
(commentsold "1") |
(faves "0") |
(id "10289") |
(more "0") |
(notesnew "1") |
(notesold "0") |
(owner "12037949754@N01") |
(secret "34da0d3891") |
(server "2") |
(type "photo") |
(views "47")) |
(title () "A photo") |
(activity |
() |
(event |
((dateadded "1133806604") |
(type "comment") |
(user "12037949754@N01") |
(username "Bees")) |
"test") |
(event |
((dateadded "1118785229") |
(type "note") |
(user "12037949754@N01") |
(username "Bees")) |
"nice"))))) |
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.
((auth |
() |
(token () "976598454353455") |
(perms () "read") |
(user ((fullname "Cal H") (nsid "12037949754@N01") (username "Bees"))))) |
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.
((auth |
() |
(token () "976598454353455") |
(perms () "write") |
(user ((fullname "Cal H") (nsid "12037949754@N01") (username "Bees"))))) |
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.
((auth |
() |
(token () "976598454353455") |
(perms () "write") |
(user ((fullname "Cal H") (nsid "12037949754@N01") (username "Bees"))))) |
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>.
((blogs |
() |
(blog |
((id "73") |
(name "Bloxus test") |
(needspassword "0") |
(url "http://remote.bloxus.com/"))) |
(blog |
((id "74") |
(name "Manila Test") |
(needspassword "1") |
(url "http://flickrtest1.userland.com/"))))) |
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.
((services |
() |
(service ((id "beta.blogger.com")) "Blogger") |
(service ((id "Typepad")) "Typepad") |
(service ((id "MovableType")) "Movable Type") |
(service ((id "LiveJournal")) "LiveJournal") |
(service ((id "MetaWeblogAPI")) "Wordpress") |
(service ((id "MetaWeblogAPI")) "MetaWeblogAPI") |
(service ((id "Manila")) "Manila") |
(service ((id "AtomAPI")) "AtomAPI") |
(service ((id "BloggerAPI")) "BloggerAPI") |
(service ((id "Vox")) "Vox") |
(service ((id "Twitter")) "Twitter"))) |
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.
((collections |
() |
(collection |
((description "a collection") |
(iconlarge "http://farm1.static.flickr.com/187/cols/37_43fac2cf79_l.jpg") |
(iconsmall "http://farm1.static.flickr.com/187/cols/56_43fac2cf79_s.jpg") |
(id "12-72157594586579649") |
(title "All My Photos")) |
(set ((description "a set") (id "92157594171298291") (title "kitesurfing"))) |
(set |
((description "some favorites.") |
(id "72157594247596158") |
(title "faves")))))) |
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.
((rsp |
((stat "ok")) |
(institutions |
() |
(institution |
((date_launch "1232000000") (nsid "123456@N01")) |
(name () "Institution") |
(urls |
() |
(url ((type "site")) "http://example.com/") |
(url ((type "license")) "http://example.com/commons/license") |
(url ((type "flickr")) "http://flickr.com/photos/institution")))))) |
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.
((contacts |
((page "1") (pages "1") (perpage "1000") (total "3")) |
(contact |
((family "0") |
(friend "1") |
(iconserver "1") |
(ignored "1") |
(nsid "12037949629@N01") |
(realname "Eric Costello") |
(username "Eric"))) |
(contact |
((family "0") |
(friend "0") |
(iconserver "1") |
(ignored "0") |
(nsid "12037949631@N01") |
(realname "Ben Cerveny") |
(username "neb"))) |
(contact |
((family "1") |
(friend "1") |
(iconserver "1") |
(ignored "0") |
(nsid "41578656547@N01") |
(realname "Cal Henderson") |
(username "cal_abc"))))) |
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.
((contacts |
((page "1") (pages "1") (perpage "1000") (total "3")) |
(contact |
((iconserver "1") (ignored "1") (nsid "12037949629@N01") (username "Eric"))) |
(contact |
((iconserver "1") (ignored "0") (nsid "12037949631@N01") (username "neb"))) |
(contact |
((iconserver "1") |
(ignored "0") |
(nsid "41578656547@N01") |
(username "cal_abc"))))) |
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
((gallery |
((id "50736-72157623680420409") |
(url "http://www.flickr.com/photos/kellan/galleries/72157623680420409")))) |
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.
((gallery |
((count_photos "17") |
(count_videos "0") |
(date_create "1241028772") |
(date_update "1270111667") |
(id "6065-72157617483228192") |
(owner "35034348999@N01") |
(primary_photo_farm "1") |
(primary_photo_id "292882708") |
(primary_photo_secret "7f29861bc4") |
(primary_photo_server "112") |
(url "http://www.flickr.com/photos/straup/galleries/72157617483228192")) |
(title () "Cat Pictures I've Sent To Kevin Collins") |
(description ()))) |
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.
((photos |
((page "1") (pages "1") (perpage "500") (total "2")) |
(photo |
((farm "1") |
(has_comment "1") |
(id "2822546461") |
(is_primary "1") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "78398753@N00") |
(secret "2dbcdb589f") |
(server "1") |
(title "FOO")) |
(comment () "best cat picture ever!")) |
(photo |
((farm "1") |
(has_comment "0") |
(id "2822544806") |
(is_primary "0") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "78398753@N00") |
(secret "bd93cbe917") |
(server "1") |
(title "OOK"))))) |
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.
((category |
((name "Alt") (path "/Alt") (pathids "/63")) |
(subcat ((count "0") (id "80") (name "18+"))) |
(subcat ((count "4") (id "82") (name "Absurd"))) |
(group |
((chatnsid "34955637533@N01") |
(inchat "0") |
(members "13") |
(name "Cal's Public Test Group") |
(nsid "34955637532@N01") |
(online "1"))) |
(group |
((chatnsid "34158032588@N01") |
(inchat "0") |
(members "3") |
(name "Eric's Alt Group Test") |
(nsid "34158032587@N01") |
(online "0"))))) |
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>.
((group |
((iconserver "1") |
(id "34427465497@N01") |
(ispoolmoderated "0") |
(lang "en-us")) |
(name () "GNEverybody") |
(description () "The group for GNE players") |
(members () "69") |
(privacy () "3") |
(throttle ((count "10") (mode "month") (remaining "3"))))) |
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.
((members |
((page "1") (pages "1") (perpage "100") (total "33")) |
(member |
((iconfarm "1") |
(iconserver "1") |
(membertype "2") |
(nsid "123456@N01") |
(username "foo"))) |
(member |
((iconfarm "0") |
(iconserver "0") |
(membertype "4") |
(nsid "118210@N07") |
(username "kewlchops666"))) |
(member |
((iconfarm "0") |
(iconserver "0") |
(membertype "2") |
(nsid "119377@N07") |
(username "Alpha Shanan"))) |
(member |
((iconfarm "2") |
(iconserver "1003") |
(membertype "3") |
(nsid "67783977@N00") |
(username "fakedunstanp1"))) |
"\r\n...\r\n")) |
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.
((prevphoto |
((id "2980") |
(secret "973da1e709") |
(title "boo!") |
(url "/photos/bees/2980/")))) |
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.
((groups |
((page "1") (pages "1") (per_page "400") (total "3")) |
(group |
((admin "0") |
(iconserver "1") |
(name "Art and Literature Hoedown") |
(nsid "33853651696@N01") |
(photos "2") |
(privacy "3"))) |
(group |
((admin "1") |
(iconserver "1") |
(name "FlickrIdeas") |
(nsid "34427465446@N01") |
(photos "20") |
(privacy "3"))) |
(group |
((admin "0") |
(iconserver "1") |
(name "GNEverybody") |
(nsid "34427465497@N01") |
(photos "4") |
(privacy "3"))))) |
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.
((photos |
((page "1") (pages "1") (perpage "1") (total "1")) |
(photo |
((dateadded "1089918707") |
(id "2645") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "12037949754@N01") |
(ownername "Bees / ?") |
(secret "a9f4a06091") |
(server "2") |
(title "36679_o"))))) |
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.
((groups |
((page "1") (pages "14") (perpage "5") (total "67")) |
(group ((eighteenplus "0") (name "Frito's Test Group") (nsid "3000@N02"))) |
(group ((eighteenplus "0") (name "Free for All") (nsid "32825757@N00"))) |
(group ((eighteenplus "0") (name "joly's mothers") (nsid "33335981560@N01"))) |
(group |
((eighteenplus "0") (name "Wintermute tower") (nsid "33853651681@N01"))) |
(group |
((eighteenplus "0") |
(name "Art and Literature Hoedown") |
(nsid "33853651696@N01"))))) |
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.
((predicates |
((page "1") (pages "1") (perpage "500") (total "3")) |
(predicate ((namespaces "1") (usage "20")) "elbow") |
(predicate ((namespaces "2") (usage "52")) "face") |
(predicate ((namespaces "1") (usage "10")) "hand"))) |
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.
((values |
((namespace "taxonomy") |
(page "1") |
(pages "1") |
(perpage "500") |
(predicate "common") |
(total "500")) |
(value |
((first_added "1244232796") |
(last_added "1244232796") |
(namespace "taxonomy") |
(predicate "common") |
(usage "4")) |
"maui chaff flower"))) |
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.
((values |
((namespace "upcoming") |
(page "1") |
(pages "1") |
(perpage "500") |
(predicate "event") |
(total "3")) |
(value ((usage "3")) "123") |
(value ((usage "1")) "456") |
(value ((usage "147")) "789"))) |
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.
((pandas |
() |
(panda () "ling ling") |
(panda () "hsing hsing") |
(panda () "wang wang"))) |
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.
((photos |
((interval "60000") |
(lastupdate "1235765058272") |
(panda "ling ling") |
(total "120")) |
(photo |
((farm "4") |
(id "3313428913") |
(owner "72442527@N00") |
(ownername "Pat Ulrich") |
(secret "2cd3cb44cb") |
(server "3609") |
(title "Shorebirds at Pillar Point"))) |
(photo |
((farm "4") |
(id "3313713993") |
(owner "10459691@N05") |
(ownername "Sven Ericsson") |
(secret "3f7f51500f") |
(server "3382") |
(title "Battle of the sky"))))) |
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.
((person |
((iconfarm "1") (iconserver "122") (ispro "0") (nsid "12037949754@N01")) |
(username () "bees") |
(realname () "Cal Henderson") |
(mbox_sha1sum () "eea6cd28e3d0003ab51b0058a684d94980b727ac") |
(location () "Vancouver, Canada") |
(photosurl () "http://www.flickr.com/photos/bees/") |
(profileurl () "http://www.flickr.com/people/bees/") |
(photos |
() |
(firstdate () "1071510391") |
(firstdatetaken () "1900-09-02 09:11:24") |
(count () "449")))) |
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.
((photos |
((has_next_page "1") (page "2") (perpage "10")) |
(photo |
((id "2636") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "47058503995@N01") |
(secret "a123456") |
(server "2") |
(title "test_04"))) |
(photo |
((id "2635") |
(isfamily "1") |
(isfriend "1") |
(ispublic "0") |
(owner "47058503995@N01") |
(secret "b123456") |
(server "2") |
(title "test_03"))) |
(photo |
((id "2633") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "47058503995@N01") |
(secret "c123456") |
(server "2") |
(title "test_01"))) |
(photo |
((id "2610") |
(isfamily "0") |
(isfriend "0") |
(ispublic "1") |
(owner "12037949754@N01") |
(secret "d123456") |
(server "2") |
(title "00_tall"))))) |
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.
((groups |
() |
(group |
((admin "0") |
(eighteenplus "0") |
(name "FlickrCentral") |
(nsid "34427469792@N01"))) |
(group |
((admin "1") |
(eighteenplus "0") |
(name "Cal's Test Group") |
(nsid "37114057624@N01"))) |
(group |
((admin "1") |
(eighteenplus "1") |
(name "18+ Group") |
(nsid "34955637532@N01"))))) |
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.
((user |
((id "12037949754@N01") (ispro "1")) |
(username () "Bees") |
(bandwidth |
((maxbytes "2147483648") |
(maxkb "2097152") |
(remainingbytes "2147099924") |
(remainingkb "2096777") |
(usedbytes "383724") |
(usedkb "374"))) |
(filesize ((maxbytes "10485760") (maxkb "10240"))) |
(sets ((created "27") (remaining "lots"))) |
(videos ((remaining "lots") (uploaded "5"))))) |
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.
((comments |
((photo_id "109722179")) |
(comment |
((author "35468159852@N01") |
(authorname "Rev Dan Catt") |
(datecreate "1141841470") |
(id "6065-109722179-72057594077818641") |
(permalink |
"http://www.flickr.com/photos/straup/109722179/#comment72057594077818641")) |
"Umm, I'm not sure, can I get back to you on that one?"))) |
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.
((photo |
((id "123")) |
(location ((accuracy "6") (latitude "-17.685895") (longitude "-63.36914"))))) |
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.
((perms |
((id "10592") (iscontact "0") (isfamily "1") (isfriend "0") (ispublic "0")))) |
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.
((prevphoto |
((id "2980") |
(secret "973da1e709") |
(title "boo!") |
(url "/photos/bees/2980/")))) |
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>.
((photocounts |
() |
(photocount ((count "4") (fromdate "1093566950") (todate "1093653350"))) |
(photocount ((count "0") (fromdate "1093653350") (todate "1093739750"))) |
(photocount ((count "0") (fromdate "1093739750") (todate "1093826150"))) |
(photocount ((count "2") (fromdate "1093826150") (todate "1093912550"))) |
(photocount ((count "0") (fromdate "1093912550") (todate "1093998950"))) |
(photocount ((count "0") (fromdate "1093998950") (todate "1094085350"))) |
(photocount ((count "0") (fromdate "1094085350") (todate "1094171750"))))) |
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.
((photo |
((id "4424") (secret "06b8e43bc7") (server "2")) |
(exif |
((label "Manufacturer") (tag "271") (tagspace "TIFF") (tagspaceid "1")) |
(raw () "Canon")) |
(exif |
((label "Aperture") (tag "33437") (tagspace "EXIF") (tagspaceid "0")) |
(raw () "90/10") |
(clean () "f/9")) |
(exif |
((label "Longitude") (tag "4") (tagspace "GPS") (tagspaceid "3")) |
(raw () "64/1, 42/1, 4414/100") |
(clean () "64° 42' 44.14\"")))) |
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 r