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
I tried using the code from #21 as a starting point as I am interested in exporting backups of my watch history over time, as I like to maintain ownership of my own data.
However,
When trying to authenticate like this:
asyncfn main() -> Result<(),Box<dyn std::error::Error>>{// log in to crunchyroll with your username and passwordlet crunchyroll = Crunchyroll::builder().login_with_credentials("myemail","mypassword").await?;
with my valid working email address and password that I can log into the website with, when using that code it simply returns this: Error: Request(CrunchyrollErrorContext { message: "invalid_client (auth.obtain_access_token.client_inactive) - ", url: Some("https://www.crunchyroll.com/auth/v1/token"), value: None, extra: Some(401) })
Am I doing something wrong, is there an access token I need or something to use as the password? To me it seems like it should be working...
The text was updated successfully, but these errors were encountered:
I tried using the code from #21 as a starting point as I am interested in exporting backups of my watch history over time, as I like to maintain ownership of my own data.
However,
When trying to authenticate like this:
with my valid working email address and password that I can log into the website with, when using that code it simply returns this:
Error: Request(CrunchyrollErrorContext { message: "invalid_client (auth.obtain_access_token.client_inactive) - ", url: Some("https://www.crunchyroll.com/auth/v1/token"), value: None, extra: Some(401) })
Am I doing something wrong, is there an access token I need or something to use as the password? To me it seems like it should be working...
The text was updated successfully, but these errors were encountered: