[jQuery] Re: urgent json parsing error!!!! very important

2009-06-06 Thread Aaron Gundel
My guess is that you're not building an extension for twitter that will run on their site, so you're violating the cross domain request rule. You cannot directly request from twitter.com, you'd have to proxy through a page on your site (some page that forwarded this request to twitter and

[jQuery] Re: urgent json parsing error!!!! very important

2009-06-06 Thread mkmanning
It's not a cross-domain security issue, it's a JSONP issue (maybe an authentication issue). Twitter's API allows you to make GET requests which are returned as JSON with an option to specify a callback function. Afaik it doesn't support JSONP however. You can add callback=some_function and the