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
javascript:jQuery('div[id^="gregbox-"]').hide();void(0); |
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('API_KEY'); | |
$auth = $v->viddler_users_auth(array( | |
'user' => 'YOUR USERNAME', | |
'password' => 'YOUR PASSWORD' | |
)); | |
if (! isset($auth['auth']['sessionid'])) { |
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'])) { |
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/'; | |
//Create Viddler object | |
$v = new Viddler_V2('YOUR API KEY'); | |
//Authenticate as you | |
$auth = $v->viddler_users_auth(array( | |
'user' => 'YOUR USERNAME', | |
'password' => 'YOUR PASSWORD' |
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'])) { |
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'])) { |
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
<? | |
//Set no time limit (in case of big uploads) | |
set_time_limit(0); | |
//Include your viddler API wrapper | |
include '/path/to/your/viddler/library'; | |
/** | |
1. Create viddler object | |
2. Authenticate as you |
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
<?php | |
include('phpviddler.php'); | |
$user = 'YOUR USERNAME'; | |
$pass = 'YOUR PASSWORD'; | |
$api_key = 'YOUR API KEY'; | |
$callback_url = 'CALLBACK'; | |
$v = new Viddler_V2($api_key); |
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
img.plain-avatar { | |
border-radius: 10px; | |
} | |
a.image img { | |
border-radius: 10px !important; | |
box-shadow: #808080 3px 3px 3px !important; | |
} |
OlderNewer