CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 05 Aug 2025 15:51:02 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100410153918
location: https://web.archive.org/web/20100410153918/https://github.com/markoa/r2flickr
server-timing: captures_list;dur=0.762282, exclusion.robots;dur=0.028519, exclusion.robots.policy;dur=0.012804, esindex;dur=0.014419, cdx.remote;dur=101.883158, LoadShardBlock;dur=1783.297081, PetaboxLoader3.resolve;dur=589.785444, PetaboxLoader3.datanode;dur=807.460833
x-app-server: wwwb-app216
x-ts: 302
x-tr: 2047
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app216; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 05 Aug 2025 15:51:05 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 10 Apr 2010 15:39:18 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b91727090aa94d5a0c09791e6b1b6963"
x-archive-orig-x-runtime: 117ms
x-archive-orig-content-length: 21231
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 10 Apr 2010 15:39:18 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 10 Apr 2010 15:39:18 GMT", ; rel="memento"; datetime="Sat, 10 Apr 2010 15:39:18 GMT", ; rel="next memento"; datetime="Thu, 14 Aug 2014 11:27:49 GMT", ; rel="last memento"; datetime="Sun, 18 Sep 2022 08:37:22 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100410121026_crawl101-c/51_15_20100410153536_crawl101.arc.gz
server-timing: captures_list;dur=0.757676, exclusion.robots;dur=0.027636, exclusion.robots.policy;dur=0.012584, esindex;dur=0.015495, cdx.remote;dur=143.978346, LoadShardBlock;dur=1826.863414, PetaboxLoader3.resolve;dur=1743.929120, PetaboxLoader3.datanode;dur=401.291242, load_resource;dur=379.177064
x-app-server: wwwb-app216
x-ts: 200
x-tr: 2439
server-timing: TR;dur=0,Tw;dur=398,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
markoa's r2flickr at master - GitHub
markoa / r2flickr
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (2)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
r2flickr is a Ruby implementation of the Flickr API, forked from rflickr. — Read more
r2flickr /
name | age | message | |
---|---|---|---|
![]() |
LICENCE | Thu May 08 12:39:08 -0700 2008 | Initial import [markoa] |
![]() |
README | Sat Dec 06 09:34:14 -0800 2008 | List the auth spec link, as the process is tricky [markoa] |
![]() |
examples/ | Loading commit data... ![]() |
|
![]() |
lib/ | ||
![]() |
r2flickr.gemspec | Fri Dec 05 17:24:47 -0800 2008 | gem version++ [dustin] |
README
r2flickr is a Ruby implementation of the Flickr API. It is a fork of rflickr, which is no longer maintained. The Flickr API reference is on: https://www.flickr.com/services/api/ You first need to get an API key as explained here: https://www.flickr.com/services/api/misc.api_keys.html You'll need to authorize your application's API key for each account which you want to access. The authentication process is described on: https://www.flickr.com/services/api/auth.spec.html Here is a sample you can use to get started: flickr = Flickr.new(token_cache_file, MY_APPLICATION_KEY, MY_SHARED_SECRET) unless flickr.auth.token flickr.auth.getFrob url = @flickr.auth.login_link puts "You must visit #{url} to authorize this application. Press enter " \ "when you have done so. This is the only time you will have to do this." gets flickr.auth.getToken flickr.auth.cache_token end <... do flickr stuff now ...> The general idea is that once you cache the token, the user will not have to reauthorize your application unless the file where the token is cached (the first argument to the new method on Flickr) is deleted. When you create a new Flickr and pass in a file path to the cached token, the API will attempt to load the token from the file. If found and loaded, the Flickr instance's auth.token is present. If the token could not be found in the file specified, then the instance's auth.token will be nil, and you will have to have the user authorize the application before it can be used. For convenience, you can set your API_KEY and SHARED_SECRET in the installed version of flickr/base.rb rather than including it in every application. https://github.com/markoa/r2flickr/tree/master Developers: Trevor Schroeder (rflickr author) Marko Anastasov Dustin Sallings