我有以下代碼日期API私人視頻
$api = new Dailymotion();
$api->setGrantType(
Dailymotion::GRANT_TYPE_PASSWORD,
$apiKey,
$apiSecret,
array(),
array(
'username' => $username, // don't forget to sanitize this,
'password' => $password, // never use POST variables this way
)
);
$store = $api->get(
'/playlist/'.$playlist_id.'/videos?limit=10&page='.$pageNumber,
array('fields' => array('id', 'title','owner','channel','url','private_id','poster','thumbnail_url','duration')));
前3天這段代碼,效果很細膩精緻,但現在檢索從我在Dailymotion列表私密視頻空單?
嘗試查看至少是否與您的播放列表存在連接https://api.dailymotion.com/playlist/x3ecgj/videos?limit=1&page=1 –
非常感謝您的回放,但在檢查結果= https://api.dailymotion.com/playlist/x4igln/videos?limit=1&page=1 {「page」:1,「limit」:1,「explicit」:false,「total」:0,「has_more 「:false,」list「:[]} – user2401582