View on GitHub

SDK

Telll core SDK

Download this project as a .zip file Download this project as a tar.gz file

Stories in Ready

Telll core SDK

The SDK is a collection of classes and helpers to communicate with telll TWS (REST and Websockets services) and implement the widgets used in telll webapp.

Example implementation:

App

http://webapp.telll.me/

XDK project

https://github.com/Telll/webapp

Important classes:

  1. Telll Facade class for telll commands

  2. Tws Facade class for API helpers

  3. Auth Authentication class

  4. TagPlayer View implementing the telll scheduling, sincronizes with a MockPlayer object.

  5. MockPlayer A simple iPlayer implementation for video tags. Syncs with a TagPlayer object.

interfaces

iView Widgets and UI

iPlayer Sync tool with a video tag

iData Model interface for API data

Helpers:

  1. Tws.getMovie()

  2. Tws.getPhotolink()

  3. Tws.getPhotolinksOfMovie()

  4. Tws.moviesList()

  5. Tws.readUserPhotolinks()

  6. Tws.saveUser(data, id)

  7. Tws.self()

  8. Tws.sendPhotolink()

  9. Tws.user()

UI:

  1. Telll.wsAuth(data)
  2. Telll.login(data)
  3. Telll.logout(data)
  4. telll.showMoviePage(movie, cb) → {MoviePage}
  5. telll.showTagPlayer(player)
  6. telll.showTelllBtn(trkm)
  7. telll.syncPlayer(tagPlayer, moviePlayer)
  8. Telll.sendPhotolink(data)
  9. Telll.showClickbox(data)
  10. Telll.showMockPlayer()

Integrations

Technology: multimedia inline links

telllSDK is a library to manage multimedia inline links.

telllSDK can be very easy to use to integrate, manage and control non intrusive advertising in mobile application.

javascript

The fulll javascript version is the file telllSDK.js that contains:

1. Download and compile

Requirements:

Use the commands bellow in a terminal (Linux, OSX, CygWin)

git clone https://github.com/Telll/SDK.git
cd SDK/telllSDK/src/js
npm build

You can also launch a local development server:

npm start

You have a working copy under build/js:

cd -
ls SDK/telllSDK/build/js

Copy it to your web server and begin using telll

2. Setup and configuration

/* Basic telll load with jQuery*/
/* Example */
function exampleImplementation (){
console.log('Loading example implementation ...');

myAdTest = new telllSDK.Telll();
console.info('telll: ', myAdTest);
// We may do it for a simplest aproach
// myAdTest.start();

// Detect if local machine is off line each 3600 seconds
setInterval( function(){
 $.ajax({
   type: "GET",
   cache: null,
   url: "http://"+myAdTest.conf.host+"/ws"
 }).fail( function() {
   alert('Connection seems down! Please check your Internet.');
 });
},3600000);



// After login create the buttons
myAdTest.login(null, function(){
    // define the instance player
    var myPlayer = {"error":"Player not loaded!!!"};
    // create buttons
    $('<input type="button" value="Dashboard">').appendTo('body').on('click', function(){myAdTest.showDashboard()});
    $('<input type="button" value="Clickbox">').appendTo('body').on('click', function(){myAdTest.showClickbox()});
    $('<input type="button" value="Movies List">').appendTo('body').on('click', 
        function(){
            // showMoviesList runs the callback after a movie is selected
            myAdTest.showMoviesList(function(m){
                        console.log("Movie selected: "+m.getTitle());
                        console.log(m);
                    })
        });
   $('<input type="button" value="Mock Player">').appendTo('body').on('click', 
       function(){
            // showMockPlayer runs the callback after load
           myAdTest.showMockPlayer( function(m){
                       myPlayer = m;       
               console.log(m); 
           })
       });
    $('<input type="button" value="Telll Movie Player">').appendTo('body').on('click', function(){myAdTest.showMoviePlayer()});
    $('<input type="button" value="Youtube Player">').appendTo('body').on('click', function(){myAdTest.showYoutubePlayer()});
    $('<input type="button" value="Tag Player">').appendTo('body').on('click', 
       function(){
            // showTagPlayer runs the callback after load
               myAdTest.showTagPlayer( myPlayer, function(tp){ 
                           console.log(tp);
               }) 
       });
    $('<input type="button" value="Photolinks List">').appendTo('body').on('click', function(){
        var list = myAdTest.showPhotolinksList();
        setTimeout(function(){
        console.log(list);
        list.on("open", function(pl){
            console.log("PL :", pl);
        });},200);
    });
    $('<input type="button" value="Telll Button">').appendTo('body').on('click', function(){myAdTest.showTelllBtn()});

});