Poulad Ashrafpour

Results 21 comments of Poulad Ashrafpour

One option could be having a queue (cached) that bot manager checks when responding to webhook calls.

I'll add a few virtual methods on `GameUpdateHandler` so clients can decide how to validate the scores properly.

In addition, events could be removed from client package and go in the polling package. I wouldn't recommend using long polling due to performance and unnecessary use of resources (long...

@Tuscen I believe we should mark them as errors. However, CI checks will happen on `develop` branch so a bit of messy code on feature branches(before getting to `develop`) would...

@Tuscen suggests StyleCop as an alternative.

@Tuscen well, we can have more than 1

I'm thinking of more exception types that inherit from `ApiException`. Almost all of the 404 responses have a reason in the format of `Bad Request: EXCEPTION_TYPE`. Using integ tests, we...

I created `@tgbots_dotnet` chat on Telegram. Feel free to join.

Overriding `ToString()` on Update, Message, and other types helps a lot with creating meaningful logs. e.g: ```c# // when update.Type is MessageUpdate and is a forwarded message: "MessageUpdate from 1234567...

We might be able to use Selenium for e2e testing. It can be used on the tg web client to perform the actions required for interactive testing. It can add...