当前位置: 首页 > 知识库问答 >
问题:

cURL 请求 Spotify 接口意外状态:415

冷夜洛
2023-03-14

这是我向Spotify发出身份验证请求的脚本,但它返回错误。我尝试更改内容类型,但这似乎并没有削减它。这是我的代码:

    $spot_api_client = 'client';
    $spot_api_secret = 'secret';
    $spot_api_redirect = 'myurl';

    if(isset($_GET['state']) && isset($_COOKIE['stateKey']) && $_COOKIE['stateKey'] == $_GET['state']){

        $ch = curl_init();
        $curlConfig = array(
           CURLOPT_URL            => "https://accounts.spotify.com/api/token",
           CURLOPT_POST           => true,
           CURLOPT_RETURNTRANSFER => true,
           CURLOPT_POSTFIELDS     => array(
               'grant_type' => 'authorization_code',
               'code' => $_GET['code'],
               'redirect_uri' => urlencode($spot_api_redirect),
           ),
           CURLOPT_HTTPHEADER     => array(
               'Accept' => '*/*',
               'User-Agent' => 'runscope/0.1',
               'Authorization' => 'Basic '. base64_encode($spot_api_client.':'.$spot_api_secret), 
               'Content-Type'=>'application/json'
           )
       );
       curl_setopt_array($ch, $curlConfig);
       $result = curl_exec($ch);
       curl_close($ch);

       print_r($result);

   }

共有2个答案

钮勇
2023-03-14

仅以节点为例。js/request使用,指出“WTF”标签:)

request(
    {
        method : "POST",
        url : "https://accounts.spotify.com/api/token",
        json : true,
        headers : 
        {
            "Content-Type" : "application/x-www-form-urlencoded", // WTF!
            "Authorization" : "Basic " + new Buffer(client_id+":"+client_secret).toString('base64')
        },
        body : "grant_type=client_credentials"
    },
    function (err, response, body)
    {
        if (err)
        {
            cb(err);
        }
        else
        {
            if (body.hasOwnProperty("access_token"))
            {
                access_token = body.access_token;
                cb(null);
            }
            else
            {
                cb(body);
            }
        }
    }
);
常英毅
2023-03-14

嗯,看来我是根据这个问题找到答案的:

    $url = 'https://accounts.spotify.com/api/token';
    $method = 'POST';
    $spot_api_redirect = 'myurl';

    $credentials = "client:secret";

    $headers = array(
            "Accept: */*",
            "Content-Type: application/x-www-form-urlencoded",
            "User-Agent: runscope/0.1",
            "Authorization: Basic " . base64_encode($credentials));

    $data = 'grant_type=authorization_code&code='.$_GET['code'].'&redirect_uri='.urlencode($spot_api_redirect);

    if(isset($_GET['state']) && isset($_COOKIE['stateKey']) && $_COOKIE['stateKey'] == $_GET['state']){
        unset($_COOKIE['stateKey']);
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $response = json_decode(curl_exec($ch), true);
        curl_close($ch);
        print_r($response);

    }
 类似资料:
  • 我正在尝试执行Spotify API的curl请求。据我所知,您可以使用请求库,但我不确定如何使用Authorization参数。以下是卷曲的请求--任何帮助都非常感谢! curl-x获取“https://api.spotify.com/v1/audio-features/06Akebrkuckw0kreuwrnvt”-h“授权:承载{您的访问令牌}”

  • 我在Heroku上托管了一个Springboot应用程序。构建和部署工作得非常好。然而,每当我想访问该方法时,我都会看到这个错误<代码>出现意外错误(类型=错误请求,状态=400) 如果我使用loclhost,但使用Heroku的应用程序时抛出错误,那么它在Postman上运行得非常好。 这是控制器的样子。我猜这就是问题的来源。 . 你认为我能做些什么让api在Heroku上工作?

  • 接口状态是Abort,HTTP Status为0,这可能是什么问题?之前好好的,今天去看成这样了。 接口没有返回信息。

  • 2.16 状态码接口(边缘) 2.16.1 描述 返回5分钟颗粒度的状态码明细数据,主要返回时间戳、省份、运营商、HIT/MISS、状态码、请求数 2.16.2 请求地址 地址: https://api.bokecs.com/channel/statusCode?time={time}domain={domain} 2.16.3 请求方式 GET 2.16.4 请求参数 参数名称 是否必须 参数描

  • 我在从网站获取数据时遇到问题(https://avito.ru)在本地MacBook Air上使用标准golang http库-禁止im获取状态403。从浏览器(使用禁用的JavaScript)打开该站点没有问题,使用标准Curl函数(Curl-v)获取数据也没有问题https://www.avito.ru/moscow)-一直处于状态200。 有一个Golang代码: 有两张照片: 有Curl-

  • 试图请求映射提交,但我得到了这个错误,我真的不明白为什么,因为我以为每个人都提供了: [...] 上的方法是在我的控制器中映射此方法: