Open madisonsilver opened 7 years ago
It's possible to ad what's implemented in https://web.skype.com/ . It looks like it's not implemented in web version of Skype yet.
Would it be possible to replicate what https://github.com/OllieTerrance/SkPy does in some way?
It seems like it would be possible to change the mood by making a request to "https://api.skype.com/users/{user_id}/profile/partial" as shown in the setMood method of the SkPy code: https://github.com/OllieTerrance/SkPy/blob/master/skpy/main.py . Is there a way to get the user's id in skyweb?
Sure. if you look at https://github.com/ShyykoSerhiy/skyweb/blob/master/src/demo/demo.ts#L12 skyweb.skypeAccount.selfInfo will contain your username. Smth like this:
{
"username": "live:phantomzkype",
"namespace": "live",
"displayname": "skype skype",
"firstname": "skype",
"lastname": "skype"
}
username is user's id
So am I correct in assuming that implementing a setMood function would be possible?
Yeah, I'll add it tomorrow.
There currently appears to be no feature that lets the program change mood messages. Would this be feasible to implement?