Code Monkey home page Code Monkey logo

Comments (8)

sochix avatar sochix commented on July 18, 2024

Post your code snippet here, please

from tlsharp.

DelphiBoy2010 avatar DelphiBoy2010 commented on July 18, 2024

I use VS 2013,
Code is:
NotificatioClientTests nt = new NotificatioClientTests();
nt.Init();
nt.AuthUser();
nt.SendMessage();

In SendMessage method when try call
await client.Connect();
error raise.

from tlsharp.

sochix avatar sochix commented on July 18, 2024

You should firstly create valid session. Run the AuthUser test, and set a breakpoint on var code = "123"; // you can change code in debugger line. You should get a code from telegram and replace with it value of code variable. Than continue execution. You'll see created session.dat file.

[TestMethod]
public async Task AuthUser()
{
  var store = new FileSessionStore();
  var client = new TelegramClient(store, "session");
  await client.Connect();

  var hash = await client.SendCodeRequest(NumberToAuthenticate);
  var code = "123"; // you can change code in debugger

  var user = await client.MakeAuth(NumberToAuthenticate, hash, code);

 Assert.IsNotNull(user);
}

After this done, try to run SendMessage test

from tlsharp.

DelphiBoy2010 avatar DelphiBoy2010 commented on July 18, 2024

Thanks.
The problem solved, but I got following error on authentication:
PHONE_MIGRATE_4

from tlsharp.

sochix avatar sochix commented on July 18, 2024

Read https://github.com/sochix/TLSharp#faq

from tlsharp.

delphiassistant avatar delphiassistant commented on July 18, 2024

I never get beyond this line:
var hash = await client.SendCodeRequest(NumberToAuthenticate);
It throws same exception "System.IO.EndOfStreamException: Unable to read beyond the end of the stream." and does not return hash, so no session.dat file is created.

from tlsharp.

sochix avatar sochix commented on July 18, 2024

Did you fill app.config correctly? Did you use correct apiId and apiHash?

from tlsharp.

sochix avatar sochix commented on July 18, 2024

Ok. Problem solved

from tlsharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.