Created
January 3, 2014 17:48
-
-
Save dailymotion-api/8242657 to your computer and use it in GitHub Desktop.
How to edit a video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Using our php-sdk | |
$api->post( | |
'/video/' . $videoId, | |
array('title' => 'New Title', | |
'description' => 'New Description', | |
.... | |
) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -F 'access_token=XXX' -F 'title=New title !' https://api.dailymotion.com/video/[VIDEO_ID] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment