I've OAuth'd, and it works because I can do other operations with read permssions like PeopleInterface.getPhotos. However, ContactsInterface.getList() doesn't seem to work for some reason. Here's my code:
this.flickr = new Flickr(
Prefs.VAL_FLICKR_CONSUMER_KEY,
Prefs.VAL_FLICKR_CONSUMER_SECRET,
new REST() );
Auth auth = new Auth();
auth.setToken( prefs.getString(Prefs.KEY_FLICKR_TOKEN_SECRET, null) );
auth.setPermission(Permission.READ);
flickr.setAuth(auth);
Collection<Contact> contacts = flickr.getContactsInterface().getList();
Any thoughts as to why that would not work? I'm using flickrj 1.2. Thanks.