skip to Main Content

Azure B2C / WPF – Handling a failed MFA verification flow

I have the following client code to fetch a token from Azure B2C endpoint: public static async Task<AuthenticationResult> AcquireTokenAsync(this IPublicClientApplication publicClientApp) { try { var accounts = await publicClientApp.GetAccountsAsync(); return await Task.Run(() => publicClientApp .AcquireTokenInteractive(apiScopes) .WithAccount(accounts.FirstOrDefault()) .WithPrompt(Prompt.ForceLogin) .ExecuteAsync()); } catch…

VIEW QUESTION

Azure Notification Hubs Android FCMv1 Client SDK – FcmV1TemplateRegistration – No Payload

Re-submitting this question because we've made quite a bit of progress, but not quite sorted yet. Been using this library and functions successfully since 2021 in my Android App com.microsoft.azure:notification-hubs-android-sdk-fcm:1.1.4 registerTemplate creates GcmTemplateRegistrationDescription and GcmRegistrationId fine Need to create FcmV1TemplateRegistration…

VIEW QUESTION
Back To Top
Search