修复SEC7112:来自“ ... spotify URL ...”的脚本由于mime类型不匹配而被阻止

时间:2019-01-02 08:17:05

标签: ajax

使用AJAX技术发送请求是我的新手。我正在尝试使用Spotify API访问一些数据,但出现SEC7112错误。以下是我正在运行的script.js文件(注意:我已从此代码中删除了客户端ID和密码,但我确实使用它们运行了代码):

window.onload = function(){

    var clientID = client_ID;
    var clientSecret = client_SECRET;
    var scopes = 'user-read-private';

    $.ajax({
        type: 'GET',
        dataType: 'jsonp',
        url: 'https://accounts.spotify.com/authorize?'
        data:{
            client_id: client_ID,        
            reponse_type: 'code',
            redirect_uri: 'example.com',
            scopes: scopes
        }
    });
};

下一段代码是我的html:

<!DOCTYPE html>
<html>
    <head>
        <title> </title>
        <script 
            src="https://code.jquery.com/jquery-3.3.1.min.js"
            integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
            crossorigin="anonymous">
        </script>
    </head>
    <body>
        <script src="script.js"></script>
    </body>

</html>

我希望这至少能从Spotify返回我的公开信息,但是如上所述,我收到了SEC7112错误

0 个答案:

没有答案