Build your first Command bot in C# for Microsoft Teams with Teams Toolkit for Visual Studio

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 6

  • @CleoCat75
    @CleoCat75 Год назад +1

    great tutorial. only thing I needed was for my Admin to put my user into the Application Developers group or something, and I needed admin rights to create the Azure Active Directory user. Then the bot works! I'm trying to get the bot to join a group channel with my co-workers though. I'll keep digging to find out how to do that. Thanks for the video!

  • @eduardoreyesmoreno33
    @eduardoreyesmoreno33 2 года назад

    Great information, but do you have any material to implement these commands in an existing project and with the Bot Framework SDK?

  • @yavuzzmercan
    @yavuzzmercan 9 месяцев назад

    Ayça teşekkür ederim çok değerli bilgiler verdin bir sorum olacak ben bu bot ile sesli arama gerçekleştirebilirmiyim bir örnek vermen mümkünmüdür teşekkür ederim

  • @SuperRupkumar
    @SuperRupkumar Год назад

    Also getting this error too -> An unhandled exception has occurred while executing the request.
    Microsoft.IdentityModel.Tokens.SecurityTokenNotYetValidException: IDX10222: Lifetime validation failed.

  • @poojapandey-ro4mx
    @poojapandey-ro4mx Год назад

    I am not getting that action button and UI after sending helloWorld. AM I missing anything?

  • @SuperRupkumar
    @SuperRupkumar Год назад

    I am using .net 6 in Visual studio 2022 and able to see my app in teams to add, when I add app into team, I am able to send in chant like helloWorld but didn't get response back, It's hitting to BotController method ( [HttpPost]
    public async Task PostAsync(CancellationToken cancellationToken = default)
    {
    await (_conversation.Adapter as CloudAdapter).ProcessAsync
    (
    Request,
    Response,
    _bot,
    cancellationToken
    );
    }
    }) but getting error in console : Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1]
    An unhandled exception has occurred while executing the request.
    Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException: Unexpected end of request content. Any idea please?