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

UNAUTH_API_GET_LIMIT on every call to GetWatchingAsync #450

Open
rarDevelopment opened this issue Apr 10, 2024 · 9 comments
Open

UNAUTH_API_GET_LIMIT on every call to GetWatchingAsync #450

rarDevelopment opened this issue Apr 10, 2024 · 9 comments

Comments

@rarDevelopment
Copy link

I'm using Trakt.NET to access Trakt and when I use its GetWatchingAsync call, I get

{"name":"UNAUTHED_API_GET_LIMIT","period":300,"limit":1000,"remaining":999,"until":"2024-04-10T03:00:00Z"}

But I'm logging in with a client id and secret, is there another way I should be doing this?

var response = await client.Users.GetWatchingAsync("my-username");
@rectifyer
Copy link
Contributor

This header is just informational. A 429 status code would be returned if you were hitting the rate limit.

@rarDevelopment
Copy link
Author

Hmm okay, but I'm getting no value back despite using my username from the URL. Is there somewhere I can check if the call is correct? I'm able to get a show by its slug no problem.

@rectifyer
Copy link
Contributor

Please pose the full request and response from the API. We'd need to see that to check where the error could be.

@rarDevelopment
Copy link
Author

rarDevelopment commented Apr 10, 2024

Hmm I'll probably run into issues there since I'm using the Trakt.NET package to make the calls. Not sure how to trace it with Fiddler either.

var response = await client.Users.GetWatchingAsync("rardk64");
var show = response.Value;

That's all I'm doing, response.Value and anything else on response is null.

@rarDevelopment
Copy link
Author

To be honest, I'm getting a response from GetWatchedShows, so I'm wondering if no shows are tracking as Currently Watching. I can't find where to check this on Trakt.tv so I'm not sure if I even have them set properly.

@vankasteelj
Copy link

There is no response if the user is not watching anything (HTTP 204 - no content). If you want to manually check on Trakt.tv if you're watching something, head to your dashboard and you should see a "red banner" like this:
firefox_kLAjTMI0ee

@rarDevelopment
Copy link
Author

There is no response if the user is not watching anything (HTTP 204 - no content). If you want to manually check on Trakt.tv if you're watching something, head to your dashboard and you should see a "red banner" like this: firefox_kLAjTMI0ee

but how do you set something as currently watching?

@vankasteelj
Copy link

Checkin or scrobble: https://trakt.docs.apiary.io/#introduction/terminology

@rarDevelopment
Copy link
Author

For a show I'm currently watching, how do you track that in the app? And how do I query for currently watching shows?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants