Daniel Vygolov

Results 29 comments of Daniel Vygolov

Do you need to save sessions? If so, you have to implement ISessionStore interface, to save the session somewhere else, not in a file. If you don't need that, then...

I'm not sure, that you'll be able to use the http proxy, but using the socks proxy is definitely possible.

Here is how i do it: ``` var proxy = await _proxyProviderFactory.GetProxyProvider().GetProxyAsync().ConfigureAwait(false); if (!string.IsNullOrEmpty(proxy)) { TcpClient TcpHandler(string address, int port) { var split = proxy.Split(':'); var socksProxy = new Socks5ProxyClient(split[0],...

@skvoshiz , ok, please write back, if it works.

So you have to find somewhere an implementation, that supports authorization, or create it yourself. As a matter of fact Windows Telegram client supports HTTP-proxies with login/password, so it should...

I've found this code on Stackoverflow, modify it with proxy username and password and give it a try: No guarantees though. ``` private static TcpClient conectarProxy(string httpProxyHost, int httpProxyPort) {...

Seems, that you are right, and the issue is with the image dimensions. When I've tried to upload a 1920x1080 photo everything went ok. It's a pity that we don't...

Great to hear that! Looking forward to hearing from you, and thanks for creating such a useful library!

Please, merge it, this is very useful!

Hello, if you are sure that they are valid users you can find their ip ranges in the ipbase and delete them. On Thu, Feb 17, 2022 at 7:47 AM...