javascript - How do I get oauth_timestamp, oauth_nonce, oauth_signature for Flickr OAuth on android -


for flickr oauth authentication, i'm authenticating user i'm getting oauth token.

oauth moauth = oauth.newinstance(activity.getapplicationcontext(),                 activity.getsupportfragmentmanager(),                 new clientparametersauthentication(flickrdemoconstants.flickr_api_key,                         flickrdemoconstants.flickr_api_secret),                 authorization_verifier_server_url,                 token_server_url,                 redirect_url,                 lists.<string>newarraylist(),                 temporary_token_request_url);  credential mcredential = moauth.authorize10a(                     userid).getresult();             if(flickrdemoconstants.debug_enable) {                 log.i(tag, "token: " + mcredential.getaccesstoken()); 

but how oauth_timestamp, oauth_nonce, oauth_signature ?


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -