I just wanted to know if their was a way to get the page source of a domain which has the same origin policy? I have tried anyorigin, but my problem is that I am not authenticated into twitter by default. I would really appreciate the help! My code is below:
var request = new XMLHttpRequest();
request.open("GET", "https://twitter.com/", false);
request.send();
var sc = request.response;