I'm studying about twitter API and oAuth authorization.
In process of oAuth authorization, obtain user authorization, user authorize at webpage twitter provide. Authorize URL : http://twitter.com/oauth/authorize?oauth_token=%@
I want to custumize login UI.
I tried one thing using javascript.
document.getElementById('username_or_email').value = 'userid'; document.getElementById('password').value = 'pass';
- I succeed in modifying user id field, but I failed to modify password field value.
Thank you for your advice.
Tae-ho.