Flickr get latest photos ASP using API
Posted
by
StevieB
on Stack Overflow
See other posts from Stack Overflow
or by StevieB
Published on 2011-02-15T15:22:06Z
Indexed on
2011/02/15
15:25 UTC
Read the original article
Hit count: 264
Hey I am currently using the following code
Dim flickr As New Flickr("apikey")
Dim test As New Photos
test = flickr.PhotosGetRecent(5, 5)
For Each [Photo] As FlickrNet.Photo In test.PhotoCollection
Response.Write([Photo].ThumbnailUrl)
Response.Write("<br>")
Next
But this only returns the Most Recent photos uploaded to flick in General, I only want my own ones. Is this possible ?
Thanks
© Stack Overflow or respective owner