I am looking for ways in which I can validate the twitter username that I am asking users in my form. I want this as client side solution. I looked libs like JsOauth and twitter API, but I just need a valid twitter username (after user authenticates this twitter account).
This requirement is not just for ensuring given username is valid or not, but also would like to ensure the given username is actually belongs to person who enters. I would like filter cases where user is putting some one else twitter user name.
I tried registering my app with twiiter and used the following code, but it throws me error saying "access is denied". Am I doing anything wrong here?
$(document).ready(function () {
debugger
var options = {
consumerKey: 'hidden',
consumerSecret: 'hidden'
};
var requestParams;
var accessParams;
var oauth = OAuth(options);
oauth.post('https://api.twitter.com/oauth/request_token',
function (data) {
debugger
console.dir(data);
window.open('https://api.twitter.com/oauth/authorize?' + data.text);
requestParams = data.text
},
function (data) {
debugger
alert('darn');
console.dir(data)
}
);
});