Possible Duplicate:
Refused to execute a JavaScript script. Source code of script found within request
I'd like to display my latest tweet on my homepage. First, I checked out the Twitter widgets, but they were too big and didn't fit my design. So I decided to use the Twitter API. I tried using the following piece of code:
<div id="twitter_update_list"></div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/username.json?callback=twitterCallback2&count=1"></script>
But when I check the console log in chrome, I see this error:
Refused to execute a JavaScript script. Source code of script found within request.
Obviously, no tweets are shown now :( Any ideas? Thanks!