1
我正在研究Twitter API和oAuth授權。自定義Twitter oAuth登錄頁面
oAuth授權過程中,獲取用戶授權,用戶授權在網頁上twitter提供。 授權網址:http://twitter.com/oauth/authorize?oauth_token=%@
我想custumize登錄UI。
我嘗試了一件使用javascript。
document.getElementById('username_or_email')。value ='userid'; document.getElementById('password')。value ='pass';
- 我成功修改了用戶標識字段,但未能修改密碼字段值。
謝謝您的建議。
Tae-ho。