Created
May 17, 2012 15:49
-
-
Save phpfunk/2719722 to your computer and use it in GitHub Desktop.
Get HTML5 w/Flash Fallback Embed Code
This file contains 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
<? | |
include '/path/to/viddler/api/'; | |
$v = new Viddler_V2('YOUR API KEY'); | |
$auth = $v->viddler_users_auth(array( | |
'user' => 'YOUR USERNAME', | |
'password' => 'YOUR PASSWORD' | |
)); | |
if (! isset($auth['auth']['sessionid'])) { | |
//Handle auth error | |
} | |
//Get HTML5 w/Flash Fallback Embed Code | |
$embed = $v->viddler_videos_getEmbedCode(array( | |
'sessionid' => $auth['auth']['sessionid'], | |
'video_id' => 'VIDEO_ID', | |
'embed_code_type' => 5, | |
'forceHtml5' => 'true' | |
)); | |
echo (isset($embed['video']['embed_code'])) ? $embed['video']['embed_code'] : 'No embed code found'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment