2016-12-16 1 views
0

YouTube에서 최신 스트리밍을 받기 위해 google oAuth를 사용하고 있습니다. 그것은 3600 초 동안 작동합니다. 그러나 그때 그것은 작동을 멈췄다. stackoverflow에서 일부 연구 후, 많은 사람들이 "SetAccessType"을 사용하여 "오프라인"이라고 썼습니다.Google oAuth가 3600 초 후에 작동하지 않습니다.

나는 그랬지만 같은 결과를 보였다.

내 스 니펫입니다.

<?php 

/** 
* Library Requirements 
* 
* 1. Install composer (https://getcomposer.org) 
* 2. On the command line, change to this directory (api-samples/php) 
* 3. Require the google/apiclient library 
* $ composer require google/apiclient:~2.0 
*/ 

$stream_id = ""; 

if (!file_exists(__DIR__ . '/vendor/autoload.php')) { 
    throw new \Exception('please run "composer require google/apiclient:~2.0" in "' . __DIR__ .'"'); 
} 

require_once __DIR__ . '/vendor/autoload.php'; 
session_start(); 


$OAUTH2_CLIENT_ID = '972289696318-q037nr25oti8gs5h7hcj5lfkl7erklh6.apps.googleusercontent.com'; 
$OAUTH2_CLIENT_SECRET = 'cbmQyfeXWGb93RkN7KSHLQKB'; 

$client = new Google_Client(); 
$client->setAccessType('online'); 
$client->setClientId($OAUTH2_CLIENT_ID); 
//$client->setExpires_in('10000000'); 
$client->setClientSecret($OAUTH2_CLIENT_SECRET); 
$client->setScopes('https://www.googleapis.com/auth/youtube'); 
$redirect = filter_var('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'], 
    FILTER_SANITIZE_URL); 
$client->setRedirectUri($redirect); 




// Define an object that will be used to make all API requests. 
$youtube = new Google_Service_YouTube($client); 

//print_r($youtube); 

// Check if an auth token exists for the required scopes 
$tokenSessionKey = 'token-' . $client->prepareScopes(); 



if (isset($_GET['code'])) { 
    if (strval($_SESSION['state']) !== strval($_GET['state'])) { 
    die('The session state did not match.'); 
    } 



    $client->authenticate($_GET['code']); 
    $_SESSION[$tokenSessionKey] = $client->getAccessToken(); 
    header('Location: ' . $redirect); 
} 

if (isset($_SESSION[$tokenSessionKey])) { 
    $client->setAccessToken($_SESSION[$tokenSessionKey]); 
} 
/* 
if ($client->isAccessTokenExpired()) { 
    $refreshToken = $client->getRefreshToken(); 
    //print_r($refreshToken); 
    // $client->refreshToken($refreshToken); 
    $newAccessToken = $client->getAccessToken(); 
    $newAccessToken['refresh_token'] = $refreshToken; 
    file_put_contents($credentialsPath, json_encode($newAccessToken)); 

} 
*/ 

// Check to ensure that the access token was successfully acquired. 
if ($client->getAccessToken()) { 


    try { 
    // Execute an API request that lists broadcasts owned by the user who 
    // authorized the request. 
    //print_r($youtube); 
    $broadcastsResponse = $youtube->liveBroadcasts->listLiveBroadcasts(
     'id,snippet', 
     array(
      'mine' => 'true', 
     )); 

    //print_r($broadcastsResponse); 

    $htmlBody .= "<h3>Live Broadcasts</h3><ul>"; 
    $count = 0; 
    foreach ($broadcastsResponse['items'] as $broadcastItem) { 
    // print_r($count+1); 
     $count = $count+1; 
     if($count == 1) { 
     $htmlBody .= sprintf('<li>%s (%s)</li>', $broadcastItem['snippet']['title'], 
      $broadcastItem['id']); 

     $stream_id = $broadcastItem['id']; 
     } 
    // print_r($broadcastItem); 
    } 
    $htmlBody .= '</ul>'; 

    } catch (Google_Service_Exception $e) { 
    $htmlBody = sprintf('<p>A service error occurred: <code>%s</code></p>', 
     htmlspecialchars($e->getMessage())); 
    } catch (Google_Exception $e) { 
    $htmlBody = sprintf('<p>An client error occurred: <code>%s</code></p>', 
     htmlspecialchars($e->getMessage())); 
    } 

    $_SESSION[$tokenSessionKey] = $client->getAccessToken(); 
} elseif ($OAUTH2_CLIENT_ID == 'Replace_me') { 
    $htmlBody = <<<END 
    <h3>Client Credentials Required</h3> 
    <p> 
    You need to set <code>\$OAUTH2_CLIENT_ID</code> and 
    <code>\$OAUTH2_CLIENT_ID</code> before proceeding. 
    <p> 
END; 
} else { 
    // If the user hasn't authorized the app, initiate the OAuth flow 
    $state = mt_rand(); 
    $client->setState($state); 
    $_SESSION['state'] = $state; 

    $authUrl = $client->createAuthUrl(); 
    $htmlBody = <<<END 
    <h3>Authorization Required</h3> 
    <p>You need to <a href="$authUrl">authorize access</a> before proceeding.<p> 
END; 
} 
?> 

<!doctype html> 
<html> 
<head> 
<title>My Live Broadcasts</title> 
</head> 
<body> 
    <?php echo $stream_id; ?> 
</body> 
</html> 

나는 무엇을 할 수 있습니까?

NB : 내 목적은 어느 누구도 여기에서 인증 할 수 있으며 최신 YouTube 스트리밍 아이디를 얻을 수 있다는 것입니다. 하지만 3600 초가 지나면 oAuth로 구조화됩니다.

:(

+0

여기에 액세스 토큰 만 사용하고있는 것 같습니다. 새로 고침 토큰이 필요합니다. –

답변

0

액세스 토큰. 만료 시간을 가지고 만료 보통이 다를 수 있지만. 값은 인증 서버에 의해 설정되고, 반 시간 (1800 초)입니다. 만료 시간이 전송됩니다 액세스 토큰과 함께 당신.

액세스 토큰, 서버가 더 이상지지 않습니다 만료 된 후에는. 당신은 당신의 새로 고침 토큰을 사용하여 새를 요청해야합니다. 당신은 첫 번째 액세스 토큰과 함께 그것을 입수했습니다해야합니다.

새로 고침 토큰이 없으면 다시 로그인해야합니다.

관련 문제