Today, my script stopped working in Chrome, and now I get a 403 Forbidden, or a 400 Bad Request. This only happens in Chrome, and only with my Twitter Search API call:
var url = "http://search.twitter.com/search.json?q=myquery&include_entities=true&callback=?";
$.ajax({
type: 'GET',
url: url,
async: false,
jsonpCallback: 'testCallback',
contentType: "application/json",
dataType: 'jsonp'
});
I’ve seen some similar complaints here and on other forums, but never an explanation that makes sense adn certainly not a solution. How can this be a Chrome-only error. If you paste the search query url into location bar, the feed is returned.
I’m at a loss, and being so close to launching my app, a little worried.