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

Spawn a local Tcplistener to handle the callback url #513

Merged
merged 9 commits into from
Jan 1, 2025
Prev Previous commit
Next Next commit
Add CHANGELOG and fix cargo clippy error.
ramsayleung committed Dec 30, 2024
commit 2494c67fe954afb3897a0550a65b98ab6eddb2fe
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@
**New features**
- ([#496](https://github.com/ramsayleung/rspotify/pull/497)) Add support for searching multiple types
- ([#512](https://github.com/ramsayleung/rspotify/pull/512)) Add `AuthCodePkceSpotify::from_token_with_config()`
- ([#513](https://github.com/ramsayleung/rspotify/pull/513)) Automatically spawn a local TCPListener to handle redirect url without manually copy/paste URL into terminal


## 0.13.3 (2024.08.24)
2 changes: 1 addition & 1 deletion src/clients/oauth.rs
Original file line number Diff line number Diff line change
@@ -1414,7 +1414,7 @@ pub trait OAuthClient: BaseClient {

#[cfg(test)]
mod tests {
use crate::{prelude::*, AuthCodeSpotify};
use crate::AuthCodeSpotify;

use wasm_bindgen_test::*;