You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
Code:
` var hasToken = /^#access_token=/.test(location.hash);
var hasError = /^#error=/.test(location.hash);
var client;
var client_id = '9c9eb6f0-5207-4888-b873-50dc041802d8';
testForConfigAndSignIn({
"client_id": client_id,
"origins": ["https://webdir.online.lync.com/autodiscover/autodiscoverservice.svc/root"],
"version": 'skypeforbusiness/1.0.0',
"redirect_uri": 'token.html'
});
$("#connect").click(function () {
var uri = $("#url").val();
client.signInManager.signIn({
version: 'skypeforbusiness/1.0.0',
name: "Abdul Basit",
meeting: uri
}).then(function () {
var conversation = client.conversationsManager.getConversationByUri(uri);
conversation.chatService.start().then(function () {
conversation.chatService.sendMessage("Hi");
});
});
});
function testForConfigAndSignIn(options) {
Skype.initialize({
apiKey: '9c967f6b-a846-4df2-b43d-5167e47d81e1'
}, function (api) {
client = api.UIApplicationInstance;
}, function (err) {
console.log(err);
});
}`
The text was updated successfully, but these errors were encountered:
Hi,
I got these error with try to signIn (Anonymously)
GET https://lyncdiscoverinternal.mdfronts.com/xframe net::ERR_NAME_NOT_RESOLVED
GET https://lyncdiscover.mdfronts.com/xframe net::ERR_INSECURE_RESPONSE
Code:
` var hasToken = /^#access_token=/.test(location.hash);
var hasError = /^#error=/.test(location.hash);
var client;
var client_id = '9c9eb6f0-5207-4888-b873-50dc041802d8';
The text was updated successfully, but these errors were encountered: