To embed Vine video using code:
Example link: https://vine.co/v/Ot2mpV1YO6F/embed/simple
Copy the code in red text and embed in Imgshow query below
[imgshow]q:name=vine,code=Ot2mpV1YO6F[/imgshow]
[imgshow q:name=vine,code=Ot2mpV1YO6F]
<?php
require_once 'class_imgshow.php';
$img = new imgshow();
echo $img->name('vine')->p('code', 'Ot2mpV1YO6F')->load();
?>
var imgshow = require('imgshow');
imgshow().name('vine').p('code', 'Ot2mpV1YO6F').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('vine').p('code', 'Ot2mpV1YO6F').load(function(result) {
alert(result);
});
});
include('imgshow.js');
if(session.ready()) {
session.answer();
util.say('Please hold while we querying');
imgshow().name('vine').p('code', 'Ot2mpV1YO6F').load(function(message) {
util.say('the result is ' + message);
});
}