Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

requestFriendList fails with -500 #81

Closed
luftaquila opened this issue Dec 11, 2020 · 3 comments
Closed

requestFriendList fails with -500 #81

luftaquila opened this issue Dec 11, 2020 · 3 comments
Labels
approved Issue approved and have plan to fix or enhancement bug Something isn't working

Comments

@luftaquila
Copy link

Describe the bug
client.service.requestFriendList() succeeds but response is { status: -500 } and
client.service.requestBlockedFriendList() fails with Request failed with status code 403

To Reproduce

client.login(email, pw, true)
  .then(() => {
    client.service.requestFriendList()
    .then((res) => { console.log(res) })
    .catch(err => { console.error(err); });

    client.service.requestBlockedFriendList()
      .then((res) => { console.log(res) })
      .catch(err => { console.error(err); });
  });

Expected behavior
Expected to get list.json and blocked.json response.

@luftaquila luftaquila added the bug Something isn't working label Dec 11, 2020
@storycraft storycraft added the approved Issue approved and have plan to fix or enhancement label Dec 12, 2020
@rycont
Copy link

rycont commented Jan 2, 2021

I'm having same issue.
image
This is the result of await kakao.Service.requestFriendList()

storycraft added a commit that referenced this issue Jan 3, 2021
@storycraft
Copy link
Owner

the origin api of requestBlockedFriendList is removed and won't work. Will be available with packet request if added.

@storycraft
Copy link
Owner

See #85 for requestBlockedFriendList replacement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Issue approved and have plan to fix or enhancement bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants