Nov 14 2021 08:58 AM
Hello Dear Team,
I am newbie with MS Teams Dev, sorry for may be idiotic question from me
I would like a make some Application for MS Teams (Tab app, Personal and for use in a group), user that will be used it should have ability to set some parameters for it
Where values of settings will be kept? Do they keep in the local storage (like in a classical modern web browser) or?
I will be happy to get some snippets of code, or kick in the right way
I use Blazor for developing
Thanks, and be well!
Nov 15 2021 05:21 AM
Nov 15 2021 05:58 AM
Dear @Meghana-MSFT I have the next pice of code:
private IAzure LogInAzure(string clientId, string clientSecret, string clientTenantId)
{
var creds = SdkContext.AzureCredentialsFactory.FromServicePrincipal(
clientId,
clientSecret,
clientTenantId,
environment: AzureEnvironment.AzureGlobalCloud);
return Azure.Configure()
.WithLogLevel(HttpLoggingDelegatingHandler.Level.Basic)
.Authenticate(creds)
.WithDefaultSubscription();
}
And I want to store these variables: "string clientId, string clientSecret, string clientTenantId" in the localStorage
Thanks for help!
Nov 15 2021 09:54 PM
Nov 16 2021 10:57 PM
Nov 19 2021 02:50 AM
Solution