-
Notifications
You must be signed in to change notification settings - Fork 1
timburks/FlickrAPI
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A Go interface to the Flickr API. Currently only two methods are supported. ============================================================== package main import ( "fmt" "github.com/agentio/FlickrAPI" ) func main() { flickr := FlickrAPI.Connection{ APIKey: "YOUR-API-KEY", APISecret: "YOUR-API-SECRET", } if true { photosSearchResponse := FlickrAPI.PhotosSearchResponse{} err := flickr.PhotosSearch(map[string]string{ "text": "savannah georgia", "license": "5", "content_type": "1", }, &photosSearchResponse) if err != nil { fmt.Printf("%+v\n", err) } else { fmt.Printf("%+v\n", photosSearchResponse) } } if true { photosGetSizesResponse := FlickrAPI.PhotosGetSizesResponse{} err := flickr.PhotosGetSizes(map[string]string{ "photo_id": "14396660080 ", }, &photosGetSizesResponse) if err != nil { fmt.Println(err) } else { fmt.Printf("%+v\n", photosGetSizesResponse) } } }
About
A simple and incomplete Go library for calling the Flickr API
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published