We are looking into integrating MS teams into our web/Mobile app running on Ruby on Rails. Is there a work around or way to properly implement the Chat and Video Function sof MS teams into the app?
I don't know too much about it, but I think there -might- be some integration between Teams and Azure Media Services for scenarios like this. Check out https://learn.microsoft.com/en-us/azure/media-services/latest/media-services-overview as a starting point. As an example:
https://learn.microsoft.com/en-us/azure/media-services/latest/release-notes#new-docs-content-stream-a-microsoft-teams-meeting :
It's easy to relay your meeting broadcast from Microsoft Teams with a Media Services live event
Related
I a building a bot that should engage a 1 on 1 conversation with every user in a company using teams.
I would like to use the post chat message method:
https://learn.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-1.0&tabs=http
However, it is written that it is "Not supported" for Applications.
I am missing something?
PS: I am trying to use Teams as directly as possible without middle stuff like Bot Service.
You'll definitely need a bot for this, and to use something called "Proactive Messaging". Please see some similar questions from earlier just this week that will give you some good reading and background, especially:
Proactive Messaging in MS Teams
Sending proactive messages from an outside process to organizational users via Teams chat bot
In the 2nd question especially I give links to further reading, samples, and a video with some more background.
I have written a chat BOT which works fine when I interact with it directly from Teams or from the BOT Framework Emulator.
However what I would like to do is interact with it from a Web Application.
Can anyone offer any guidance on how to do this. What Api should I use, are there any samples etc.
Just about all the documentation for writing chat applications seems to be about writing the BOT end. I need to implement the user end
Thanks.
If this is your own web application, that you control (i.e. source code), then this could be a good starting point: https://github.com/Microsoft/BotFramework-WebChat
We want to have a clean way to pick up a recorded Teams meeting after Stream has completed processing so that we can do trigger additional tasks.
We are currently working around this with notification API based on email subject but hoping there is a better way. Saw this post about Stream API being on the roadmap - any chance beta version can be previewed?
https://techcommunity.microsoft.com/t5/microsoft-stream-forum/is-microsoft-stream-api-api-available-now-in-2019/m-p/1001402
Welcome suggestions
Microsoft graph change notifications currently do not support Microsoft stream events today. More generally Microsoft stream does not have a public API. You should upvote the idea supporting an API for Microsoft Stream in Microsoft graph to help prioritize the work and receive updates.
I am looking for a way to get notified by an email about critical issues in mobile apps. Currently, Google Analytics (with firebase or itself) is the best solution to suit my tasks: crash reports, usage and custom events tracking. But if there is something critically wrong with an app, can I get notified without logging into GA administration panel?
I was looking for answers in documentation, administration panel, forums. The answers were misleading, because it is not easy to formulate a question and do not get a bunch of articles about remote messaging that google provides.
I was trying to contact google itself, but it is not providing support for free. You need to have adwords or other paid business tools I do not have and need.
Is there a way to solve my tasks in GA scope or I need to integrate other tracking service? Any suggestions?
I'm trying to build a live updating dashboard in rails 5 with a actioncable. I was searching for some example which might guide me into implementing this but all i found was some chatting apps. I'm planning to use Google Charts. How would i be create an polling Channel which will an API will get data from server and display in my app. Because chat app are calling when user send a message. I want to make it automate polling every X seconds. Any links or reference will be quite helpful. Thanks!!!