This repository was archived by the owner on Jun 11, 2025. It is now read-only.
How to check friends current status ? #201
Answered
by
Terrance
kingprapop
asked this question in
Q&A
|
I can't found way to check that. Normaly ,I can get SkypePresenceEvent when friends change thier status ,But friends continue "Online,Away" i can't not know them status Target: I want to sendmsg to only who Online(Active). |
Answered by
Terrance
Jun 1, 2022
Replies: 1 comment
|
You'll have to keep track of presence events yourself (by recording the last-seen If you have contacts that are persistently idle, they're probably mobile clients that advertise themselves as always-available (receiving push notifications even if the app isn't open), so you'll probably want to require an online status. |
0 replies
Answer selected by
Terrance
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll have to keep track of presence events yourself (by recording the last-seen
SkypePresenceEventfor each contact), as Skype doesn't provide a direct API for reading a user's status.If you have contacts that are persistently idle, they're probably mobile clients that advertise themselves as always-available (receiving push notifications even if the app isn't open), so you'll probably want to require an online status.