CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 20 Aug 2025 03:30:38 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100412224923
location: https://web.archive.org/web/20100412224923/https://github.com/markoa/r2flickr/tree/v0.1.1
server-timing: captures_list;dur=1.091855, exclusion.robots;dur=0.034107, exclusion.robots.policy;dur=0.015989, esindex;dur=0.020623, cdx.remote;dur=20.330895, LoadShardBlock;dur=235.095531, PetaboxLoader3.datanode;dur=80.868984, PetaboxLoader3.resolve;dur=70.877060
x-app-server: wwwb-app217
x-ts: 302
x-tr: 298
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app217; 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: Wed, 20 Aug 2025 03:30:39 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 12 Apr 2010 22:49:23 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "a3d1ea6fbf8465de18368c78ed733701"
x-archive-orig-x-runtime: 205ms
x-archive-orig-content-length: 20533
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: Mon, 12 Apr 2010 22:49:23 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 31 Dec 2008 20:31:17 GMT", ; rel="prev memento"; datetime="Wed, 31 Dec 2008 20:31:17 GMT", ; rel="memento"; datetime="Mon, 12 Apr 2010 22:49:23 GMT", ; rel="last memento"; datetime="Mon, 12 Apr 2010 22:49:23 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: 52_15_20100412181655_crawl103-c/52_15_20100412224831_crawl101.arc.gz
server-timing: captures_list;dur=1.009254, exclusion.robots;dur=0.024104, exclusion.robots.policy;dur=0.012493, esindex;dur=0.011494, cdx.remote;dur=6.730530, LoadShardBlock;dur=199.012844, PetaboxLoader3.resolve;dur=352.520155, PetaboxLoader3.datanode;dur=91.143100, load_resource;dur=304.813471
x-app-server: wwwb-app217
x-ts: 200
x-tr: 573
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
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 v0.1.1 - GitHub
markoa / r2flickr
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (2)
- Wiki (1)
- Graphs
-
Tag:
v0.1.1
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 | Loading commit data... ![]() |
|
![]() |
examples/ | ||
![]() |
lib/ | ||
![]() |
r2flickr.gemspec |
README
r2flickr is a Ruby implementation of the Flickr API. It is a fork of the last release of rflickr, which is no longer maintained. There are a few example scripts in the examples directory. 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. 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. [1] https://rubyforge.org/projects/rflickr/