Can we show some reports like Table data like rows and columns in Microsoft Bot framework - chatbot

I am building an Azure LUIS chatbot using Microsoft Bot Framework, where I have to show some reports in tables in the chatbot itself based on the user input.
Can we do it in the Microsoft bot framework?
Please guide

Related

SharePoint Online, possible way to track user activity?

I'm currently working on a SharePoint and I'm looking to implement a page that tracks which user read which document/ viewed a file.
Would I need to use Powershell or is there a plugin app on the SharePoint store?
Users' activities in SharePoint Online is a part of Office 365. The first step you need to do is to enable Audit Logs feature: https://learn.microsoft.com/en-us/microsoft-365/compliance/search-the-audit-log-in-security-and-compliance.
Then you can retrieve audit logs by using Microsoft Graph API (it's not Powershell script but hopefully you can find some ideas from it): https://blog.kloud.com.au/2019/01/18/retrieve-office-365-audit-logs-using-office-management-api-and-azure-functions/

Create Outlook add-in using Angular

I'm trying to create an Outlook add-in using Angular 7 that can access all the users in my organization with Microsoft Graph API. In order to do that, I need to authenticate the current user and get an access token for calling graph API. I am planning to do the authentication using Single Sign On (SSO).
I read the documentation and didn't find any solution to my problem. My current add-in doesn't have a back-end, just a front-end.
This will only work with Office add-ins in Preview right now and requires you to have a server side component and an Azure AD registered application. There are detailed steps on accomplishing that here for asp.net and nodejs. There is no examples with Angular though unfortunately:
https://learn.microsoft.com/en-us/office/dev/add-ins/develop/sso-in-office-add-ins

Is there a Microsoft Graph MS Word API?

Question
Are there actually any Graph API endpoints for the Office 365 version of Word at the moment?
(And, if not, are they planned?)
Where I've looked
I've found the documentation for Excel API in Graph, Outlook API in Graph, OneNote API in Graph, but I cannot find any mention of a Word API.
There's no mention of Word in the Productivity section of Graph Overview Official docs.
And there's no sign of it in the Graph Explorer Samples:
And there don't seem to be any sub-projects related to Word in the Microsoft Graph GitHub repo.
Side notes
This question asks a similar thing about the Office 365 API. I'm not sure if the Graph API is a rebranding of the Office 365 API, which now seems to be end of life according to the official docs?
Ultimately what we're looking for is a replacement for the Office PIAs that we can use from an Azure hosted web app to build Word documents. We've been using Open XML, but we need dynamic page numbering which OpenXML doesn't support.
As of today there is no Word API available under the Microsoft Graph other than managing the file and it's permissions when it's seating in SharePoint/OneDrive for Business.
There is a UserVoice entry supporting the idea.
There used to be APIs provided by Office Online Server/Office Web Apps but I don't think it fits your scenario.
So as you're pointing today the only ways to modify a word document via an API that are available seem to be the interop assemblies, the Office Add-Ins SDK or third party APIs.

Azure Chat Bot Custom UI for skype for Business

a .Net Developer. I am developing chat bot for skype for business using Azure Bot Framework. I have observed some difference in Look and Feel of chat bot in Local Bot Emulator and Skype for Business. Can we have any custom UI feasibility for skype for business?
I have used ThumbnailCard Attachement in Locally and it look good. but in skype for business it showing raw text.
Can any one help or answer this query and it will be great to us?
Local Bot UI Screenshot
Skype for Business UI Screenshot
Skype for Business is in Preview State for this.
At present Skype for Business does not support UI feasibilities.
Recommend you to deploy on Microsoft Team UI works fine there.

Integrate Moodle and .net 1.1 application to single log on

My situation is, I have a .net 1.1 application to provide enrollment of courses, and some courses are provided by a moodle site. So when the user enrolls a course and he will be provided the URL link to moodle. But moodle requires the user to log on again. How can I implement a single log on?
Thanks!
One approach would be to alter moodle's login.php to look for a currently logged in session from the .NET application. This approach is described in detail on the following blog:
http://www.kassblog.com/2006/08/moodle-single-sign-on-mod/