D
D
DivoTech2022-03-22 17:50:08
css
DivoTech, 2022-03-22 17:50:08

How to track the mention of the community in VK?

Task: when any VK user mentioned my community in his comment (via @), automatically send a response to this comment (of course, if the access settings allow it)
I did not find such an event in the Callback API. In general, mentions can be obtained via newsfeed.getMentions, but this needs to be constantly requested to keep track of new mentions. It would be desirable on the contrary - to receive notifications about such events. Is it possible?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
K
Kirill Kublyakov, 2016-06-26
@Kublyakov

it's easier to add a class, for example active and add animation to .gameend, active in styles

H
HamSter, 2016-06-26
@HamSter007

If with a class, .flipInXthen an example

.game-info {
  transition: all .52s ease-in-out;
  opacity: 0;
  transform: translateX(1000%);
}

.game-info.hidden {
  opacity: 1;
  transform: translateX(0%);  
}

L
LXSTVAYNE, 2022-03-22
@lxstvayne

On the wall of your community, you can monitor messages, but you can’t track the mention in all other communities.

P
Puma Thailand, 2022-03-24
@opium

There are no options other than to receive a constant feed here

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question