Advertisement
Guest User

Untitled

a guest
Apr 1st, 2014
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. https://api.login.yahoo.com/oauth/v2/request_auth?oauth_token=....
  2.  
  3. var YahooWebView = Ti.UI.createWebView({
  4. left : 0,
  5. top : 0,
  6. right : 0,
  7. bottom : 0,
  8. width : 320,
  9. height : 568,
  10. scalesPageToFit : true,
  11. url : "http://example.com"
  12. });
  13.  
  14. var authPageURL = "https://api.login.yahoo.com/oauth/v2/request_auth?oauth_token=" + oauthToken;
  15. var yahooMobileLoginUrl = "https://login.yahoo.com/m?&.src=oauth&.lang=en-us&.intl=us&.done=" + authPageURL;
  16. YahooWebView.setUrl(yahooMobileLoginUrl);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement