You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async function run() {
const api: Api = await connect({credentials: {username: "", password: ""}});
for (const contact of await api.getContacts()) {
console.log(contact);
}
}
Returns only perhaps a dozen contacts. Do you know how a "contact" is defined by Skype? I have hundreds of contacts and I'm curious if I need to use paging or something to work through them all?
Thanks for this.
The text was updated successfully, but these errors were encountered:
It may be related to paging (not implemented) but from what I remember Skype has a relatively high limit. It can return about 50 results for my account.
It would help if you knew if the official Skype web app uses paging or not. Could you inspect your network tab for requests with the contacts/v2/users/<yourId> part? Does it perform multiple requests?
I'll double-check if there is some paging or not and then add support for it if it's the issue.
Returns only perhaps a dozen contacts. Do you know how a "contact" is defined by Skype? I have hundreds of contacts and I'm curious if I need to use paging or something to work through them all?
Thanks for this.
The text was updated successfully, but these errors were encountered: