Wednesday, May 20, 3:30 PM – 3:45 PM EDT
Nikola Metulev, Microsoft (@metulev)
I had really wanted to see Nikola build a Toolkit app from end-to-end, but he only had 15 minutes for the entire demo and discussion. Here are the links I think I need to be able to build the demo.
- https://docs.microsoft.com/en-us/graph/toolkit/get-started
- https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app
- https://docs.microsoft.com/en-us/graph/toolkit/providers/msal
- https://graph.microsoft.com
- https://mgt.dev
- https://aka.ms/mgt
This blog post also looks very helpful:
Here is the HTML page that should make it all work:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://unpkg.com/@microsoft/mgt/dist/bundle/mgt-loader.js"></script>
</head>
<body>
<mgt-msal-provider client-id="insert GUID here"></mgt-msal-provider>
<mgt-login></mgt-login>
<mgt-person person-query="beth" person-card="hover"></mgt-person>
</body>
</html>
- Version 1.3 of the Toolkit should be released in a few weeks.
- It was built with Web Components, which are supported by all major browsers and frameworks now. They are natively rendered by the browser.
- The Toolkit eliminates all of the boilerplate code that was previously necessary.