Skip to content

kellan/flickr.simple.php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Attempts to be the simplest PHP Flickr API client possible.

Usage

include 'flickr.simple.php';

$key = '-your-key-here-';
$secret = '-your-secret-here-';

$flickr = new Flickr($key, $secret);

# request a token with write level permission

$token = $flickr->auth_shell('write');

$method = 'flickr.photos.search';
$args = array('auth_token' => $token, 
	'user_id' => '-your-user-id');

$rsp = $flickr->method($method, $args);

var_dump($rsp);

About

The trivial Flickr API library I use for most of my Flickr hacking scripts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages