0

我正在尝试在导入用户的自定义应用程序中使用您的 api。一切正常(auth_token,登录,呼叫启动),但是当被调用者应该得到响应并添加远程流时,什么也没有发生。控制台中不会显示任何错误。如果有人查看代码并告诉我我缺少什么,我将不胜感激。我在https://freeofcinema.vline.com上尝试了 vline 演示, 它在两台计算机之间使用相同的浏览器和条件。在我的应用程序中它是 http ,但我也尝试使用 https ,并且出现了同样的问题。这是我用来测试 api 的一些简化代码。

var Streams = [];
var Vsession = null;
var Vline = (function(){
    var Client;
    var authToken;
    var service_id = 'freeofcinema'; 
    var profile = null;
    var Person;
    var Calls = [];

var onMessage = function(event){
    //alert('message');
    var msg = event.message, sender = msg.getSender();
    console.log(sender.getDisplayName() +'sais: '+ msg.getBody());
    console.log(event);
}
var onMediaSession = function(event){
    console.log(event); 
    var mediaSession = event.target; 
    InitSession(mediaSession);
}

function Call(mediaSession) {
    mediaSession.
    on('change', alert_info);
}

function alert_info(b){
    console.log(b);
}

function InitSession(mediaSession){
    mediaSession.on('mediaSession:addRemoteStream', function(event) {
        alert('addRemoteStream');
    });
    mediaSession.on('mediaSession:addLocalStream', function(event) {
        alert('addLocalStream');
    });
    mediaSession.on('mediaSession:removeLocalStream mediaSession:removeRemoteStream', function(event) {
        console.log('removedStream');
    });
    Calls.push(new Call(mediaSession));
}

return {
    init : function(){
        if(profile){
            return;
        }
        profile = {
            "displayName" : //some getusrname function...
        }; 
        $.post('vtoken.php',{//get auth token
            id : Comm.Voip_user().id
        },function(data){
            authToken = data;
            Client = vline.Client.create({
                "serviceId": service_id,
                "ui" : true
            });
            Client.on('recv:im', onMessage , this);
            Client.on('add:mediaSession', onMediaSession, this);
            Client.on('login', function(e) {
                Vsession = e.target;
                //alert('loged in');
            });
            Client.login(service_id, profile, authToken); 
        });   
    },
    getPerson : function(id){//id of user to call
        if(Vsession){
            Vsession.getPerson(id).
            done(function(person){
                Person = person;
                Vsession.startMedia(id);
            });
        } 
    }
}
}());

谢谢您的答复。

我尝试了应用程序中的一个用户和https://freeofcinema.vline.com中的另一个用户,并且发生了同样的问题。通话(处于挂起状态)也会在片刻后终止..

4

1 回答 1

1

在创建客户端时传递 ui:true 时,您不必自己处理媒体会话。只需评论该行

Client.on('add:mediaSession', onMediaSession, this);
它应该可以正常工作。

于 2013-08-29T02:47:04.947 回答