Jan Wrage

Results 14 comments of Jan Wrage

Hi, any news on this? I need the LQI-data for my sensors using REST. Thanks!

Forgot the aforementioned approach, it's nonsense. Now I'm writing to different bitmaps in each animation and before swapping the canvas I merge them all together. This works fine using SkiaSharp...

This PR needs some attention...I need the LQI-Information for my nodes from the REST-API and this is exactly what I was looking for... Please review and merge, if possible.

No, `WithAppOnly()` is an official extension method in `Microsoft.Identity.Web.RequestOptionsExtension`. It instructs the graph to use application-permissions for the next request instead of delegated-permissions. As I said, the first request without...

@andrueastman Hey, any news on this or a workaround? This stops me from updating my app!

I encounter the same issue with 2.13.3. It's working in 2.13.2. Haven't found the time to further debug it, just switched back to 2.13.2. Short Stack Trace: `System.NullReferenceException: at Microsoft.Identity.Web.MergedOptions.PrepareAuthorityInstanceForMsal...

@jmprieur : Here's my auth-config: ```cs public static IServiceCollection AddDefaultAuthentication(this IServiceCollection services, IConfigurationSection azureAdConfigurationSection) { ArgumentNullException.ThrowIfNull(azureAdConfigurationSection); services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApi(jwt => { IdentityModelEventSource.ShowPII = true; var opt = new MicrosoftIdentityOptions(); azureAdConfigurationSection.Bind(opt); jwt.Authority...

I set the height to 0 to virtually disable the slider: ``` .mud-tab-slider.mud-tab-slider-horizontal { height: 0; } ```

I have the same issue...getting the unresolved value. No typo, access verified. Maybe I'm missing something?

Ok, I think I found the issue: I'm using the updated code from Javier in [App.razor](https://github.com/javiercn/BlazorWebNonceService/blob/d30c0bda567cfff02dd1e681c69abc235f1b08f4/BlazorWebNonceService/Components/App.razor#L33) This creates a nonce in case it's null like this: ```cs Span bytes =...