In Blackberry I am using phonegap's childbrowser for twitter share. When getting twitter request_token I am getting a pop up having content:"api.twitter.com requires authentication. Please enter your name and password", but I need to open the Twitter login page in childbrowser and I have also written the code for doing this only. But instead this pop up is coming. Please help me..This is the code I am using for getting request_token:
oauth.get('https://api.twitter.com/oauth/request_token',
function(data) {
requestParams = data.text;
window.plugins.childBrowser.showWebPage('https://api.twitter.com/oauth/authorize?'+data.text,
{ showLocationBar : false });
},
function(data) {
alert('Error : No Authorization');
alert(JSON.stringify(data));
alert("AppLaudLog: 2 Error " + data.text);
$('#oauthStatus').html('<span style="color:red;">Error during authorization</span>');
}
);
