RequireAuthorization for dotnet

Using the .NET code quickstart, I added this method:

app.MapPost("/", async (HttpContext context) =>
{
    using var reader = new StreamReader(context.Request.Body);
    var body = await reader.ReadToEndAsync();

    return Results.Ok(body);
}).**RequireAuthorization**();

Authorization will need some config and middleware. I realize that Mondaycom Code SDK only supports NodeJS and Python (as of the moment), but is there a way to get this working in C#? And is more official support for dotnet actually on the roadmap?

Hello there @dapug,

As of today we do not have an ETA on when dotnet support could be added for the SDK.

I do not have experience with C# so I would not know how you would be able to make it work using said language. I have not seen a user do that yet.

Let me know if you have any other questions!

Cheers,
Matias