Giter VIP home page Giter VIP logo

Comments (7)

esindger avatar esindger commented on July 21, 2024

Please check out parameters of the chanels.getMessages method. You should pass list of message id that you need to get.

from airgram.

esindger avatar esindger commented on July 21, 2024

I guess you need method messages.getHistory.

from airgram.

AshwinTayson avatar AshwinTayson commented on July 21, 2024

Sorry for the late message. Yes I needed to use the messages.getHistory It was not intuitive to name channel.getMessages. But I have another doubt. How can I download a image or any media? I dont want to open another issue/question for this.

I tried using

upload.getFile({
  location: {
    _: 'inputDocumentFileLocation',
    id: message.media.id,
    access_hash: message.media.access_hash
    version: ?
  }
})

But it throws RpcError: CODE#400 LIMIT_INVALID

I don't understand why getting one image needs limit and offset parameters. Also what number should be fed into version?

from airgram.

esindger avatar esindger commented on July 21, 2024

Try to add additional options:

client.upload.getFile({
      location: { ... },
      offset: 0,
      limit: 1024 * 1024
}, {
      isFileTransfer: true,
      createClient: true
})

I don't understand why getting one image needs limit and offset parameters.

This parameters described in schema.tl. Airgram does not change original Telegram API.

Also what number should be fed into version?

Where did you take location value?

from airgram.

AshwinTayson avatar AshwinTayson commented on July 21, 2024

from airgram.

AshwinTayson avatar AshwinTayson commented on July 21, 2024

Here is the actual message object

{
  _: 'message',
  pFlags: {
    post: true
  },
  flags: 17920,
  post: true,
  id: 11210,
  to_id: {
    _: 'peerChannel',
    channel_id: 1171605754
  },
  date: 1550556770,
  message: '',
  media: {
    _: 'messageMediaPhoto',
    pFlags: {},
    flags: 1,
    photo: {
      _: 'photo',
      pFlags: {},
      flags: 0,
      id: '6294134956242348146',
      access_hash: '11226369941418527484',
      date: 1550556770,
      sizes: [Array]
    }
  },
  views: 1643
}

from airgram.

AshwinTayson avatar AshwinTayson commented on July 21, 2024

Hello I've figured it. By the way this is a very useful library and I appreciate your effort. I didn't mean any disrespect or if I had been rude, I apologise. Its just a little frustrating with their API docs.

The answer is not to use id and access_hash instead use the sizes object in media.photo and get the desired size using the secret, volume_id and local_id. I hope this issue is useful for someone who is in the same boat as me.

from airgram.

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.