-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev
More file actions
179 lines (131 loc) · 4.99 KB
/
dev
File metadata and controls
179 lines (131 loc) · 4.99 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
*
https://api.flickr.com/services/rest/
https://api.flickr.com/services/soap/
https://api.flickr.com/services/xmlrpc/
https://up.flickr.com/services/upload/
https://up.flickr.com/services/replace/
*/
/**
Public feed
Returns a list of public content matching some criteria.
URL
https://api.flickr.com/services/feeds/photos_public.gne
Query string parameters
id (Optional)
A single user ID. This specifies a user to fetch for.
ids (Optional)
A comma delimited list of user IDs. This specifies a list of users to fetch for.
tags (Optional)
A comma delimited list of tags to filter the feed by.
tagmode (Optional)
Control whether items must have ALL the tags (tagmode=all), or ANY (tagmode=any) of the tags. Default is ALL.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
/**
Friends' feed
Returns a list of public content from the contacts, friends & family of a given person.
*
URL
https://api.flickr.com/services/feeds/photos_friends.gne
Query string parameters
user_id (Required)
The user ID of the user to fetch friends' photos and videos for.
display_all (Optional)
Show multiple items for each contact (display_all=1), rather than one. Default is to show one per contact.
friends (Optional)
Show content from only friends and family (friends=1), excluding contacts. Default is to show from all contacts.
format (Optional)
The format of the feed. See the feeds page for feed format information. Defaults is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
/**
Favorite photos feed
Returns a list of public favorites for a given user.
URL
https://api.flickr.com/services/feeds/photos_faves.gne
Query string parameters
id
A single user ID. This specifies a user to fetch for.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
/**
Group discussions feed
Returns a list of recent discussions in a given group.
URL
https://api.flickr.com/services/feeds/groups_discuss.gne
Query string parameters
id (Required)
The ID of the group to fetch discussions for.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
// Flickr.Group(id).Discussions(options).done(callback);
// done!
/**
Group pool feed
Returns a list of things recently added to the pool of a given group.
URL
https://api.flickr.com/services/feeds/groups_pool.gne
Query string parameters
id (Required)
The ID of the group to fetch for.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
// Flickr.Group(id).Photos(options).done(callback);
// done!
/**
Forum discussion feed
Returns a list of recent topics from the forum.
URL
https://api.flickr.com/services/feeds/forums.gne
Query string parameters
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
// Flickr.Forum().Discussions(options).done(callback);
// done!
/**
Recent activity on your photostream feed
Returns a list of recent comments on photostream and sets belonging to a given user.
URL
https://api.flickr.com/services/feeds/activity.gne
Query string parameters
user_id (Required)
The user ID to fetch recent activity for.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
// Flickr.User(id).Activity(options).done(callback);
// done, closed by flickr
/**
*Recent comments you made feed
Returns a list of recent comments that have been commented on by a given person.
URL
https://api.flickr.com/services/feeds/photos_comments.gne
Query string parameters
user_id (Required)
The user ID to fetch recent comments for.
format (Optional)
The format of the feed. See the feeds page for feed format information. Default is Atom 1.0.
lang (Optional)
The display language for the feed. See the feeds page for feed language information. Default is US English (en-us).
*/
// Flickr.User(id).Comments(options).done(callback);
// done!