skype - 无法登录 SKYPE SDK 示例

标签 skype skype-for-business

我正在尝试运行随新 SKYPE SDK 分发的 Web 示例。我没有本地 Lync 服务器,所以我使用站点提供的域和 token 登录。

Domain=metio.net
Token= Bearer cwt=AAEBHAEFAAAAAAAFFQAAAKuuXmvzGAIi1fxkeZUMAACBEFGt0YtqM3BVrxhrtkQkKFqCAoCDgyBiUaV6fPrpGdHv_Vl5hHoss0owQitMzh9xvY5tjoKyLoYIslm_avRm0ggNEPafGCkKskFVn6NvOvBYlbY

但登录永远不会完成。忙碌的圈子永远旋转。有没有人让这个工作?

最佳答案

试试这个代码

<html>
<head>
<!-- JQuery. Skype Web SDK requires JQuery to work. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap layouts and themes. Totally optional, but it makes the examples look much nicer -->
<link rel="stylesheet" type="text/css" href="../../assets/metro/css/metro-bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<!-- This is the Skype for Web SDK -->
<script type="text/javascript" src="//swx.cdn.skype.com/shared/v/1.1.23.0/SkypeBootstrap.js"></script>
</head>
<body>
<div id="header"></div>
<!-- Skype for Web API Code by Tom Morgan | thoughtstuff.co.uk -->
<!-- This is one of a number of examples showing how to use the Skype for Web API. The full list is at skypewebsdk.com -->
<!-- Disclaimer: use at your own risk. -->
<div class="form-horizontal">
<div class="form-group">
<label for="username" class="col-sm-2 control-label">Username</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="username" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="password" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button class="btn btn-default" id="btnLogIn">Log in</button>
</div>
</div>
</div>
<div id="footer"></div>
<!-- This is not needed for the samples to run, but adds standard headers and footers to the samples, to display title, instructions, about etc.
If you're taking this code and using it yourself, you can remove this.-->
<script type="text/javascript" src="../../assets/layoutcodesample-min.js"></script>
<script type="text/javascript">
<!-- These variables are only needed for laying out the code sample, they are not part of the sample code. -->
var pageTitle = "Getting Logged In";
var blogPostLocation = "http://blog.thoughtstuff.co.uk/2015/04/learn-skype-web-sdk-day-1-logging-in/";
var githubLocation = "https://github.com/tomorgan/SkypeWebSDKSamples/blob/gh-pages/Login/Getting%20Logged%20In/index.htm";
var client;
$(function () {
'use strict';
Skype.initialize({
apiKey: 'SWX-BUILD-SDK',
}, function (api) {
client = new api.application();
}, function (err) {
alert('some error occurred: ' + err);
});
$('#btnLogIn').click(function () {
// start signing in
client.signInManager.signIn({
username: $('#username').val(),
password: $('#password').val()
}).then(function () {
//log in worked!
alert('Logged in!');
}, function (error) {
//Something went wrong.
alert(error);
});
});
});
</script>
</body>
</html>

关于skype - 无法登录 SKYPE SDK 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30489252/

相关文章:

IOS Safari 检测 Skype

带有 Selenium 的 Python SkypeWebClient-Bot(错误 10048)

javascript - Microsoft JScript 运行时错误 : 'WScript' is undefined

skype - UCWA 或 UCMA API 是否支持 Skype for Business Online?

python - 以编程方式获取 Skype for Business 状态

https - 带有 HTTPS 网站的 Skype 按钮

skype - 如何使用Skype4Java附加到Skype?

c# - 以编程方式安排/创建 Skype for Business session

c# - 如何在 ASP.NET MVC 中集成 Skype for business 功能

botframework - Bot 框架无法与 Skype For Business 一起使用