Skip to content

Commit

Permalink
small documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
Swizec committed Mar 8, 2011
1 parent c73d3ae commit 0816bab
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Expand Up @@ -32,6 +32,7 @@ For example:
lng: <some longitude>},
function (images, error) { ... });


// get info about a tag
instagram.tags.tag('snow', function (tag, error) { ... });

Expand All @@ -44,6 +45,19 @@ For example:
// search for a tag
instagram.tags.search('snow', function (tags, error) { ... });


// get info about a location
instagram.tags.tag(1, function (tag, error) { ... });

// get recent media for a location
instagram.tags.media(1, function (tag, error) { ... });
instagram.tags.media(1, {max_id: 5}, function (tag, error) { ... });
instagram.tags.media(1, {min_id: 5}, function (tag, error) { ... });
instagram.tags.media(1, {max_id: 5, min_id: 0}, function (tag, error) { ... });

// search for a location
instagram.tags.search({lat: ..., lng: ..., distance: ...}, function (tags, error) { ... });

# License

Some sort of BSD or MIT license, the general idea being:
Expand Down

0 comments on commit 0816bab

Please sign in to comment.