0

我正在使用 Dailymotion SDK PHP ( http://www.dailymotion.com/doc/api/sdk-php.html ) 在我的 Dailymotion 帐户上上传视频。

我可以使用此脚本上传 1 个视频,但如果我在几分钟后尝试上传另一个视频,我将无法做到。它打印此错误:

Fatal error: Uncaught exception 'DailymotionTransportException' with 
message 'couldn't open file "" ' in Dailymotion.php:686 Stack trace: #0 
Dailymotion.php(213): Dailymotion->httpRequest('http://upload-0...', Array) 
#1 index.php(39): Dailymotion->uploadFile('') #2 {main} thrown in Dailymotion.php 
on line 686

这里的PHP代码:

<?php

session_start();

// ----- account settings -----//
$apiKey        = 'XXXXX';
$apiSecret     = 'XXXXX';
$testUser      = 'XXXXX';
$testPassword  = 'XXXXX';
$videoTestFile = 'test.mov';

require_once 'Dailymotion.php';

//----- scopes you need to run your tests -----//
$scopes = array('userinfo',
            'feed',
            'manage_videos');

//----- Dailymotion object instanciation -----//
$api = new Dailymotion();
    $api->setGrantType(
    Dailymotion::GRANT_TYPE_PASSWORD,
    $apiKey,
    $apiSecret,
    array(implode(',', $scopes)),
    array(
        'username' => $testUser,
        'password' => $testPassword
    )
);

$url = $api->uploadFile($videoTestFile);

$result = $api->post(
    '/videos',
    array('url'       => $url,
        'title'     => 'Test',
        'published' => true,
        'channel'   => 'sport',
        'private' => 'true',
        )
);

var_dump($result);
}
?>
4

1 回答 1

2

您自己的问题堆栈跟踪向您展示了失败的原因:

Fatal error: Uncaught exception 'DailymotionTransportException' with message 'couldn't open file "" ' in Dailymotion.php:686
Stack trace:
#0 Dailymotion.php(213): Dailymotion->httpRequest('http://upload-0...', Array) 
#1 index.php(39): Dailymotion->uploadFile('')
#2 {main} thrown in Dailymotion.php on line 686

Dailymotion->uploadFile('')在 index.php 文件的第 39 行调用时没有任何文件名,这是行不通的。该消息来自 SDK 正在使用的 cURL 库。您的请求甚至永远不会离开您的脚本。

于 2014-07-02T07:45:30.717 回答