Hi,
When I run my app I get the followinf exception, what is my problem?:
com.aetrion.flickr.FlickrException: 96: Invalid signature at com.aetrion.flickr.auth.AuthInterface.getFrob(AuthInterface.java: 104)
Logged In: YES user_id=1085488
I ran into this issue as well. You need to set your Shared Secret key in the RequestContext instance:
RequestContext.getInstance().setSharedSecret( YOUR_KEY );
Once that is done and your API key is set you should be able to make API calls.
Logged In: YES user_id=1570366
RequestContext rc = RequestContext.getRequestContext(); rc.setSharedSecret(<your shared secret>);
Log in to post a comment.
Logged In: YES
user_id=1085488
I ran into this issue as well. You need to set your Shared
Secret key in the RequestContext instance:
RequestContext.getInstance().setSharedSecret( YOUR_KEY );
Once that is done and your API key is set you should be able
to make API calls.
Logged In: YES
user_id=1570366
RequestContext rc = RequestContext.getRequestContext();
rc.setSharedSecret(<your shared secret>);