로딩
요청 처리 중입니다...

[데일리모션 Data API] 동영상 업로드

 [데일리모션 Data API] 동영상 업로드

* https://developer.dailymotion.com/tools/sdks#sdk-php PHP API 를 사용해 데일리모션에 동영상을 업로드 하는 소스이다. SDK는 위의 사이트에서 확인 후 다운로드하면된다. include("Dailymotion.php"); $apiKey = ""; $apiSecret = ""; $username = ""; $pwd = ""; $filePath = "1.mp4"; $api = new Dailymotion(); $api->setGrantType(Dailymotion::GRANT_TYPE_PASSWORD, $apiKey, $apiSecret, array('manage_videos', 'write','delete'), array('username' => $username, 'password' => $pwd)); try { $url = $api->uploadFile($filePath); $result = $api->call('video.creat...

# dailymotion # php # 데일리모션 # 동영상업로드