Questions tagged [flickrj]

FlickrJ is a Java API which wraps the REST-based Flickr API.

FlickrJ is a Java API which wraps the REST-based Flickr API.

http://flickrj.sourceforge.net/

18 questions
5
votes
4 answers

How to access private photos through Flickrj Api?

I'm making an authenticated call to access photos through Flickr API. But I am only getting my public photos but not any private photos. Given below is the code I'm using, Flickr f; RequestContext requestContext; String frob = ""; String token =…
Paba
  • 1,105
  • 3
  • 19
  • 34
5
votes
1 answer

Android: How to upload photo on flickr using flickrj-android-2.0.0 android library

I an using flickrj-android-2.0.0 and follow the OAuth flow. I am getting the access-token and secret also but when I try to upload the photo on flickr I am getting the this error: com.googlecode.flickrjandroid.FlickrException: 99: Insufficient…
user1618714
  • 143
  • 3
  • 6
2
votes
1 answer

Android LogCat continuously repeating a warning: "Addition of standard header .... not allowed"

I've been developing an Android application using version 2.3.3 (API 10). The application simply uses Flickr Java API (flickrj) to make certain search queries based on tags, date, geographical info etc. and displays the search result photos to the…
yunusual
  • 325
  • 3
  • 9
2
votes
2 answers

Desktop Flickrj Java Authentication Flow

I'm using the Flickrj API to log into flickr. For READ only access its fine, but I can't seem to correctly auth when i need WRITE access to add tags to photos. As i understand the basic auth flow Get a frob Pass that frob requesting WRITE access,…
emeraldjava
  • 10,894
  • 26
  • 97
  • 170
2
votes
1 answer

Flickr API Java/Clojure

I am trying to get a list of all the photo sets in my account. I gave my application write access i can verify this has write access by creating an photo set but when ever i try to read the list i only get my public lists not my privates. (def…
Hamza Yerlikaya
  • 49,047
  • 44
  • 147
  • 241
1
vote
1 answer

Invalid API Key (Key has invalid format) : Flickr upload api

I tried lots of thing but fail to upload the photo through flickr api ..Here what i am doing API- https://api.flickr.com/services/upload Method- POST Authorization- Oauth1.0 Passing Consumer Key/Consumer Secret/Access Token/Token Secret
Subodh Joshi
  • 12,717
  • 29
  • 108
  • 202
1
vote
0 answers

Flickr: How to use flickr.photos.geo.getLocation in python or any language?

I used the following code to get Latitude and Longitude in python in pycharm environment as import flickr api_key = u'xxxxx' secret_api_key = u'xxxxxx' photoID=8636126004 for photo in…
user1999109
  • 421
  • 7
  • 19
1
vote
2 answers

How to send a simple ping test to Flickr with Flickrj api

I am trying to send a single ping test to Flickr using flickrj. I am following step by step the tutorial here https://github.com/callmeal/Flickr4Java imported all the maven dependencies and everything and ended up with the following code: import…
1
vote
1 answer

Flickrj - getPublicGroups uncommon return type

Reading the docs for Flickrj 1.2 http://flickrj.sourceforge.net/api/com/aetrion/flickr/people/PeopleInterface.html#getPublicGroups(java.lang.String) I'm trying to the public groups for users but it seems the return type is…
Mark
  • 621
  • 1
  • 10
  • 24
1
vote
1 answer

flickrj dependencies

does anyone know the java packages that flickrj is dependent on? I'm going through the slow and painful compile - jarify - run - locate-library - repeat loop.
Jason S
  • 184,598
  • 164
  • 608
  • 970
0
votes
1 answer

Flickr/flickrj: how to get user information after user clicks on web-app?

I'm writing a Java web-app that I created a Flickr-app for. If a Flickr-user registers my app he/she is automatically sent to the URL I entered in Flickr's authentication flow of the app. Along with that I receive a parameter frob. I can use that…
sjngm
  • 12,423
  • 14
  • 84
  • 114
0
votes
1 answer

How to get camera on which known photo was taken

my question concerns the API of flickr.com. Type of camera is visible below each photo directly on the site, but I do not see any method in the API which allow to obtain it from my application. Does anybody know the solution?
user5793877
0
votes
0 answers

Flickr Authentication in Java

I am going to download geotagged_flickr images for a specific area! I already got some information from flickr, but they did not authentication! This time I need authentication!and this link as well ,but I read a lot, but I do not know how it works…
GeoBeez
  • 920
  • 2
  • 12
  • 20
0
votes
1 answer

Using Https Protocol for downloading data from Flickr

Since June 2014, all API keys just work via HTTPS only.Flickr deprecate non-SSL access to the API. There is another Post, but It's for 6 years ago which is before this event. I know how to download data from Flickr, and I know it should work, but…
GeoBeez
  • 920
  • 2
  • 12
  • 20
0
votes
1 answer

401 response during OAuth authorization in flickr

I develop android application that backup photos to flickr. I had the next problem several times: Sometimes I receive 401 response ("Response Code: 401, Response Message: Unauthorized, Error: oauth_problem=token_rejected") instead of response with…
1
2