Results 17 comments of Shane Weaver

@keyur32 , what's the plan for this? I would really love to have quickstarts available for Content Add-Ins. It's a bit of a pain to configure a Hello World unless...

@TCourtneyOwen, not to be that guy, but it doesn't sound like the feature is available quite yet. Are you sure this should be closed? Just my two cents :)

I suggest either: 1. Create the PublicClientApplication object externally and pass it into the constructor. https://github.com/CommunityToolkit/Graph-Controls/blob/15513b1861d6fa016165e61867c08ec05c0a70a0/CommunityToolkit.Authentication.Msal/MsalProvider.cs#L63 3. Extend MsalProvider and override the CreatePublicClientApplication function to add this functionality. Something like...

I think we could accomplish this with a refresh interval property. That is how the mgt-get component works, which is a fair analog to GraphPresenter. It's called `polling-rate`: https://docs.microsoft.com/en-us/graph/toolkit/components/get

I'm not sure. GetTokenWithScopesAsync is called during AuthenticateRequestAsync, but it does not specify silentOnly, so I'm expecting the prompt to show under most/all circumstances. The only time the function is...

If you don't mind, @jasonjoh, try out what @michael-hawker suggested. I'm curious if that works for you. The guidance in the README/docs certainly doesn't tell you to do this for...

Oh actually... looking at this closer, I can see that you aren't specifying a redirect uri when you create the MsalProvider instance: ``` string[] scopes = new string[] { "User.Read"...

@Richasy can you share some more details about the failure/error you are seeing? It seems like you are fixing a bug, but it's hard to tell if this could be...

@RobPethick, I agree that batching the Graph calls across components is a great aspiration. Today, we have one off calls to the Graph in each component. We do cluster some...

Hi @elav000, thanks for submitting this. As you have seen, our testing setup in the toolkit leaves some to be desired... I agree that we should offer some testing examples...