GithubHelp home page GithubHelp logo

Comments (4)

wiz0u avatar wiz0u commented on June 8, 2024 1

Yes, it's the same issue as OP

In one case you pass just the pathname

HttpContext.Current.Server.MapPath

and in the other case, you pass a FileStream

File.Open(HttpContext.Current.Server.MapPath

Those leads to different file storage formats that are incompatible.
Either use only pathnames, or only FileStreams, but don't mix both to resume sessions.

When dealing with files, I recommend you only use pathnames (not FileStream), the format is optimized for performance.

To use a pathname with the Config callback constructor, have the Config method reply to "session_pathname".

from wtelegramclient.

wiz0u avatar wiz0u commented on June 8, 2024

The default WTelegramClient session store (when you leave it null in constructor) doesn't generate session files in a format compatible with the stream of data expected when you give your own session store

If you want to pass your own (custom) file stream in constructor, start with an empty file and generate a new session (with verification code). It will update/write to that file a correct stream of data for later reuse/resume of the session.

from wtelegramclient.

lucaswhob avatar lucaswhob commented on June 8, 2024

Hello Please Provide Example I Have Exactly Same This Error !
I Create Session with this method
clienttelegram = new WTelegram.Client(12XXX,"bXXXX",HttpContext.Current.Server.MapPath("/tempkey.session"));
Create File Session Successfully And Logon Ok !
But Afte Reuse Session Exception throw
static string Config(string what)
{
switch (what)
{
case "api_id": return "12XXXXX";
case "api_hash": return "bd4XXXXXX";
case "phone_number": return "+9891XXXX";
case "verification_code": return "";
case "first_name": return "";
case "last_name": return "";
case "password": return "";
default: return null;
}
}
clienttelegram = new WTelegram.Client(Config, File.Open(HttpContext.Current.Server.MapPath("
/tempkey.session"), FileMode.Open));
Please Help Me Thx

from wtelegramclient.

lucaswhob avatar lucaswhob commented on June 8, 2024

hello thx for reply .
but when reuse session second contructor of WTelegram Accept Only Session
Can not pass string to second contructor of new Wtelegram
Second Time for resuse call :
clienttelegram = new WTelegram.Client(Config, File.Open(HttpContext.Current.Server.MapPath("/tempkey.session"),

from wtelegramclient.

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.