Dailymotion API を使用して、自分の非公開動画の情報を取得したいと考えています。SO ... 私は Dailymotion アカウントを持っています API キーと秘密キーを作成しました PHP クラスをダウンロードしました 私のプライベート動画の情報を取得して、自分のウェブサイトに表示したいと思います...
だから私は自分のアカウントを認証する必要があり、コードを取得する必要があると思います.しかし、それは機能しません:'(これを行うためのサンプルコードを教えてください.
私のテストコードは今のところそのようなものです
<?php
error_reporting(E_ALL & ~E_NOTICE);
ini_set('display_errors', 1);
$apiKey = 'xxxx';
$apiSecret = 'xxxx';
require_once 'Dailymotion.php';
// Instanciate the PHP SDK.
$api = new Dailymotion();
// Tell the SDK what kind of authentication you'd like to use.
// Because the SDK works with lazy authentication, no request is performed at this point.
$api->setGrantType(Dailymotion::GRANT_TYPE_AUTHORIZATION, $apiKey, $apiSecret);
$api = new Dailymotion();
try
{
$result = $api->get(
'/video/privateVideoId',
array('fields' => array('id', 'title', 'owner'))
);
}
catch (DailymotionAuthRequiredException $e)
{
echo $e->getMessage();
// If the SDK doesn't have any access token stored in memory, it tries to
// redirect the user to the Dailymotion authorization page for authentication.
//return header('Location: ' . $api->getAuthorizationUrl());
}
catch (DailymotionAuthRefusedException $e)
{
echo $e->getMessage();
// Handle the situation when the user refused to authorize and came back here.
// <YOUR CODE>
}
trace($result);
function trace($d) {
echo '<pre>';
var_dump($d);
echo '</pre>';
}
?>
結果は次のとおりです。このユーザーは、このビデオへのアクセスを許可されていません。
認証に問題があると思います...しかし、phpだけでそれを行う方法がわかりません
助けてくれてどうもありがとう