Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>');
                }
        );
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.