Home Page

The list of supported video services

Back to Main Page

Blip.TV video

To embed Blip.TV video using keyword:
Getting the Blip.TV video title and put in below Imgshow query

[imgshow]q:name=bliptv,k=love[/imgshow]
  		
[imgshow q:name=bliptv,k=love]
  		
<?php
require_once 'class_imgshow.php';

$img = new imgshow();
echo $img->name('bliptv')->p('k', 'love')->load();

?>  		
var imgshow = require('imgshow');

imgshow().name('bliptv').p('k', 'love').load(function(result) {
	console.log(result);
});
  		
var imgshow = require('./imgshow.js');

var win = Ti.UI.createWindow({title:'Imgshow Client'});
var btn = Ti.UI.createButton({left:5,top:5,right:5,bottom:5,title:'Show Me Result'});
btn.addEventListener('click', function() {
	imgshow().name('bliptv').p('k', 'love').load(function(result) {
		alert(result);
	});	
});  		
include('imgshow.js');

if(session.ready()) {
	session.answer();
	util.say('Please hold while we querying');
	
	imgshow().name('bliptv').p('k', 'love').load(function(message) {
		util.say('the result is ' + message);
	});
}
  		

Visit Imgshow API Github Page for more information