-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathREADME
59 lines (38 loc) · 1.32 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
===================================================
go-flickr: A interface to Flickr's API in Google Go
Author: Nolan Caudill
Date: 2011-01-10
License: MIT
===================================================
This is a simple wrapper in Go to talk to Flickr.
I wrote this mainly as an exercise to learn Go but it is functional.
I don't really know Go so if you see something that could be more idiomatic or written better, please let me know!
The godoc below is the best place to learn how to use this library.
To compile and install:
go build
To test:
gotest
=======================================================================
PACKAGE
package flickr
import "."
TYPES
type Error string
func (e Error) String() string
type Request struct {
ApiKey string
Method string
Args map[string]string
}
type Response struct {
Status string `xml:"stat,attr"`
Error *ResponseError `xml:"err"`
Payload map[string]bool
}
func (request *Request) Execute() (response string, ret os.Error)
func (request *Request) Replace(filename string, filetype string) (response Response, err os.Error)
func (request *Request) Sign(secret string)
func (request *Request) URL() string
func (request *Request) Upload(filename string, filetype string) (response Response, err os.Error)
Example:
r.Upload("thumb.jpg", "image/jpeg")