How do I determine who viewed my Telegram profile?

Is there any event in the Bot or Core API telegram to determine who is being viewed by the user or channel or bot group or profile?

Some bots and apps claim they can do this, but I haven't found any programming method in the telegram API docs.

For example, I just see a way getUserProfilePhotos

in the Telegram Bot API about the user profile.

Also Update objects now have the following elements (in the Bot telegram):

  • update_id
  • message
  • edited_message
  • channel_post
  • edited_channel_post
  • inline_query
  • chosen_inline_result
  • callback_query
  • shipping_query
  • pre_checkout_query
+3


source to share


2 answers


As I explained here , there is one way to do this. If you have an unofficial telegram form (like Mobogram) user1

get a profile every time user2

, you can save that retrieval request and then report user2

that user1

your profile has been visited. But in this case, both users must use your fork. Telegram is so concerned about user privacy, so I don't think the API will be used for this purpose in this case.



+4


source


There is no way to get this data at this time.



Telegram cares very much about privacy, so there is no way to track users.

+3


source







All Articles