BigDanTheOne
BigDanTheOne
``` @tb.inline_handler(lambda query: query.query) async def query_text(inline_query): r1 = types.InlineQueryResultArticle('1', 'Result', types.InputTextMessageContent('Result message.')) r2 = types.InlineQueryResultArticle('2', 'Result2', types.InputTextMessageContent('Result message2.')) id='AgACAgIAAxkBAAIkc2LB6mYy0GnZBzKTXuxG_2qCaQAB2wACkr4xG8AuEEqrRCYAAUPEFEMBAAMCAANzAAMpBA' r3 = types.InlineQueryResultCachedPhoto('3', photo_file_id=id, title='title', description='description', caption='caption') await tb.answer_inline_query(inline_query.id, [r1,...
@coder2020official But if I pass a title to InlineQueryResultPhoto and a random url from the web everything works fine ``` @tb.inline_handler(lambda query: query.query) async def query_text(inline_query): r1 = types.InlineQueryResultArticle('1', 'Result',...
-You should always pass title cuz it is not optional. Yes, sure. -I didn't get your issue Don't you have "Untitled" passing id of a photo stored on the Telegram...
> So you are having untitled title for random image from internet? No. For a random image from internet everything is ok. I have untitled only for an image stored...
No, thanks a lot.
I faced the same problem but simply added sudo and this solved the problem for me (Colab)
> > I faced the same problem but simply added sudo and this solved the problem for me (Colab) > > Can you please share the modified code regarding the...