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


I am writing a Java web-app for which I created the Flickr App.

If a Flickr-user registers in my app, they are automatically sent to the URL entered in the Authentication Flow of the Flicker app. Also, give me a parameter frob I can get that user's Flickr user ID of that particular user:

  flickrId = flickrj.getAuthInterface (). GetToken (frob) .getUser (). GetId ();   

So it works fine.

However, if he uses "the application you are using" and clicks on my app then I do not get any information about the user as far as I can tell Also, if I use the flickrage like

  frob = flickrj.getAuthInterface (). GetFrob (); I get a frob such as  7x1x7x2x2x8x1x1x0-48x9f1xfdbx8ex9d-x00x5x9  (note that I have some X-ed), which should be frost if I then Use that frob on  
  flickrId = flickrj.getAuthInterface (). GetToken (frob) .getUser (). GetId ();   

I went to an invalid fob on a

  com.aetrion.flickr.FlickrException: 108: com.aetrion.flickr.auth.AuthInterface.getToken (AuthInterface.java:182):   

What should I do to get information about Flickr currently logged in user? I think that the URL or the Flickr was hoping to find something like a placeholder in use, automatically sends some parameters, but I did not get the information about this.

This in the Fluor Authentication Flow The only problem that calls the URL entered is that when the user comes from Flickr's authorization form, it is different from this type of request.

But this is a A more story is ...

Comments