retrive oath token and oauth secret from android twitter login using dialog -


i'm making android login using twitter api last step made open url on dialog contains webview code

    @override protected string doinbackground(void... params) {     string url = null;     try {         log.i(tag, "retrieving request token google servers");           url = provider.retrieverequesttoken(consumer, constants.oauth_callback_url);         log.i(tag, "popping browser authorize url : " + url);        } catch (exception e) {         log.e(tag, "error during oauth retrieve request token", e);     }       return url; } 

then open dialog url , sign twitter need make tweet , retrieve username of user

use twitteroauthview getting accesstoken.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -