getJSON and twitter

getJSON and twitter

Hi, i have a question, im sorry if this is something stupid but im kind of getting crazy so i ask your help :)
Im trying to connect to twitter api to get some tweets, here what i did :

  1. (function(){
  2.    var Twitter = {
  3.         init:function(){
  4.             this.url = 'https://twitter.com/search?q=pekiti&callback=?';
  5.             this.fetch();
  6.         },
  7.        fetch: function(){
  8.            $.getJSON(this.url, function(data){
  9.                console.log(data);
  10.            });
  11.         }
  12.    };
  13.     
  14.     
  15.     Twitter.init();
  16. })();

And i keep getting an error in the Chrome console :

 Resource interpreted as Script but transferred with MIME type text/html: 
handlebars_twitter.html:1

Refused to execute script from ' https://twitter.com/search?q=pekiti&callback=jQuery213041483843117021024_1423827486044&_=1423827486045' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.

Any idea whats wrong ? i did search a lot on google but no luck !

Thanks in advance :)