I am using javascript , I have created twitter APP for the same. and want to fetch basic user profile information in javascript only. I am using below code:
$.ajax({
type: "GET",
url: "http://api.twitter.com/1.1/users/show.json",
datatype: "json"
success: function(response) {
jsonData = response;
}
});
Also please let me know if I can use OAuth for the same in javascript.