Twitch API -请求验证令牌返回什么都没有


Twitch API - asked for auth token return nothing

我有类似的问题:Twitch API -不能使用PHP获得认证令牌,但不能写注释。

试过代码:

    $ch = curl_init("https://api.twitch.tv/kraken/oauth2/token");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
$fields = array(
    'client_id' => 'blablabla_correct',
    'client_secret' => 'blablabla_also_correct',
    'grant_type' => 'authorization_code',
    'redirect_uri' => 'http://localhost/php/twitch.php',
    'code' => $_GET['code']
);

 curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
    $data = curl_exec($ch);
print $data;

但是它什么也没打印。所以我试着用#2中的代码调试请求:

// to start, just use the code you've already got:
$ch = curl_init("https://api.twitch.tv/kraken/oauth2/token");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
$fields = array(
    'client_id' => 'blablabla_correct',
    'client_secret' => 'blablabla_also_correct',
    'grant_type' => 'authorization_code',
    'redirect_uri' => 'http://localhost/php/twitch.php',
    'code' => $_GET['code']
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$data = curl_exec($ch);
// Now, here we believe the first error comes into play, so let's check it out
print_r($data); // confirm that this is not what we want
$info = curl_getinfo($ch); // let's get some details about that last request
// print it out and see what we get
echo '<pre>';
print_r($info);
echo '</pre>';

然后得到数组。我不知道下一步该怎么办。API文档在这里:https://github.com/justintv/Twitch-API/blob/master/authentication.md#auth-code

Array
(
    [url] => https://api.twitch.tv/kraken/oauth2/token
    [content_type] => 
    [http_code] => 0
    [header_size] => 0
    [request_size] => 0
    [filetime] => -1
    [ssl_verify_result] => 0
    [redirect_count] => 0
    [total_time] => 0.203
    [namelookup_time] => 0
    [connect_time] => 0.203
    [pretransfer_time] => 0
    [size_upload] => 0
    [size_download] => 0
    [speed_download] => 0
    [speed_upload] => 0
    [download_content_length] => -1
    [upload_content_length] => -1
    [starttransfer_time] => 0
    [redirect_time] => 0
    [certinfo] => Array
        (
        )
    [primary_ip] => 192.16.71.172
    [primary_port] => 443
    [local_ip] => 192.168.1.100
    [local_port] => 51603
    [redirect_url] => 
)

我可能是错的,但作为其他登录提供商,我可以想象twitch也不允许redirect urls到不存在的域,如localhost

如果你想要localhost返回url,我可以选择这个服务,你可以把你的重定向url指向一个通配符服务器,请求被重定向到你的localhost。

http://xip.io

xip。io是一个神奇的域名,为任何IP提供通配符DNS地址。假设你的局域网IP地址是10.0.0.1。使用xip.io,

     10.0.0.1.xip.io            resolves to   10.0.0.1
     www.10.0.0.1.xip.io        resolves to   10.0.0.1    
     mysite.10.0.0.1.xip.io     resolves to   10.0.0.1  
     foo.bar.10.0.0.1.xip.io    resolves to   10.0.0.1