-
test added.
2009-12-15 21:01:49 UTC by x-mago
-
Thanks for the patch. Have not done this, because I don't have a pro account ;-).
2009-12-15 21:01:08 UTC by x-mago
-
x-mago committed patchset 423 of module api to the flickrj CVS repository, changing 2 files.
2009-12-15 20:57:49 UTC by x-mago
-
You need to provide the sharedSecret
Use the Constructor this way:
new Flickr(apiKey, sharedSecret, rest);
If you don't have that shared secret, look at the apidoc of the class Flickr.
2009-12-06 21:41:36 UTC by x-mago
-
Hi,
Just discovered your app. Tested with this:
Flickr f = new Flickr(apiKey);
PhotosetsInterface ps = f.getPhotosetsInterface();
PhotoList photos = ps.getPhotos( nwtPhotoSetId, 500, 1);
Result:
com.aetrion.flickr.FlickrException: 96: Invalid signature
at com.aetrion.flickr.photosets.PhotosetsInterface.getPhotos(PhotosetsInterface.java:437)
at...
2009-12-05 07:44:20 UTC by c_thompson
-
Apologies for submitting separately. :-)
2009-12-01 22:19:58 UTC by boncey64
-
Needed to replace a photo so added code to do it.
Fairly simple stuff - did a test too.
2009-12-01 22:16:48 UTC by boncey64
-
x-mago committed patchset 422 of module api to the flickrj CVS repository, changing 1 files.
2009-11-08 21:58:00 UTC by x-mago
-
x-mago committed patchset 421 of module api to the flickrj CVS repository, changing 1 files.
2009-11-07 23:23:24 UTC by x-mago
-
PhotosInterface::getInfo should sign calls in order to work with private images. I suggest adding an api_sig parameter by inserting this code similar to the search function at line 570:
parameters.add(
new Parameter(
"api_sig",
AuthUtilities.getSignature(sharedSecret, parameters)
)
);.
2009-11-05 01:41:40 UTC by mattny