Code Monkey home page Code Monkey logo

Comments (10)

sochix avatar sochix commented on July 18, 2024

Can you post here what you already have?

from tlsharp.

tsoftit avatar tsoftit commented on July 18, 2024

im try implement send photo in your TLsharp
im define new class call SendMediaRequest
'-----------------------------
public class SendMediaRequest : MTProtoRequest
{
private InputPeer _peer;
private InputMedia _message;

    public SendMediaRequest(InputPeer peer, InputMedia message)
    {
        _peer = peer;
        _message = message;
    }

    public override void OnSend(BinaryWriter writer)
    {
        long random_id =  Helpers.GenerateRandomLong();
        writer.Write(0xa3c85d76);
        _peer.Write(writer);
                    this._message.Write(writer);
        writer.Write(random_id);
    }

and in class TelegramClient I implement this task

public async Task SendMedia(int id, InputMedia message)
{
var request = new SendMediaRequest(new InputPeerContactConstructor(id), message);

        await _sender.Send(request);
        await _sender.Recieve(request);
    }

now I need send message photo
im try this
BinaryReader kk = new BinaryReader(File.Open(@"C:\Users\TSOFT\Pictures\colors.jpg", FileMode.Open));
InputMedia a = TL.Parse (kk) ;
await client.SendMedia(res.Value,a);
but faild
any help??

from tlsharp.

tsoftit avatar tsoftit commented on July 18, 2024

please in this link
https://core.telegram.org/type/InputPhoto
I need how I obtain the value of ( id & access_hash ) to pass it to function where I need to send photo as I say in last

from tlsharp.

dinhducit avatar dinhducit commented on July 18, 2024

I facing same problem, @sochix Can you add features: send media, receive incoming message?

from tlsharp.

sochix avatar sochix commented on July 18, 2024

Yep I can, but need a donation for it, because itsn't my main job
10 янв. 2016 г. 6:21 пользователь "Nguyen Dinh Duc" <
[email protected]> написал:

I facing same problem, @sochix https://github.com/sochix Can you add
features: send media, receive incoming message?


Reply to this email directly or view it on GitHub
#29 (comment).

from tlsharp.

dinhducit avatar dinhducit commented on July 18, 2024

@sochix yes, I need your help, please!

from tlsharp.

sochix avatar sochix commented on July 18, 2024

@dinhducit send me your contact for private messaging

from tlsharp.

dinhducit avatar dinhducit commented on July 18, 2024

@sochix username of me on Telegram is @nguyendinhduc, pls contact with me via Telegram

from tlsharp.

headria avatar headria commented on July 18, 2024

@ahmadheadri please help me to

from tlsharp.

sochix avatar sochix commented on July 18, 2024

Example of send media https://github.com/sochix/TLSharp#send-media-to-contact

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.