Amit be
Amit be

Reputation: 469

Identify when a user is using the skype web control - on botframework

I'm looking for a way to identify whether a user is sending a message with the Skype web control and not through the standard client. Is there any parameter attached to the session object or any other way to do so? Or maybe a ref parameter like Facebook messenger has?

I would like to know also if the user is authenticated or not - I could see that the name is always Guest but it doesn't seem to be a very robust way to check it.

Upvotes: 0

Views: 105

Answers (1)

Gary Liu
Gary Liu

Reputation: 13918

You can detect it via bot receive middleware event, e.g.

bot.use({
  receive: function (event, next) {
    // handle `event.entities` for your needs
    console.log(event.entities)
    next();
  },
}); 

the event.entities shoule be like:

 [ { locale: 'en-US',
       country: 'US',
       platform: 'Web',
       type: 'clientInfo' } ],

and for skype for web, the platform property is Web, for windows client, the platform property is Windows.

Upvotes: 2

Related Questions