[][src]Struct spotify_oauth::SpotifyToken

pub struct SpotifyToken {
    pub access_token: String,
    pub token_type: String,
    pub scope: Vec<SpotifyScope>,
    pub expires_in: u32,
    pub expires_at: Option<i64>,
    pub refresh_token: String,
}

The Spotify Token object.

This struct follows the parameters given at this link.

This object can only be formed from a correct Spotify Callback object.

Example

// Create a new Spotify auth object.
let auth = SpotifyAuth::new("00000000000".into(), "secret".into(), "code".into(), "http://localhost:8000/callback".into(), vec![SpotifyScope::Streaming], false);   

// Create a new Spotify token object using the callback object given by the authorization process.
let token = SpotifyCallback::from_str("https://example.com/callback?code=NApCCgBkWtQ&state=test").unwrap()
    .convert_into_token(auth.client_id, auth.client_secret, auth.redirect_uri).await.unwrap();

Fields

access_token: String

An access token that can be provided in subsequent calls, for example to Spotify Web API services.

token_type: String

How the access token may be used.

scope: Vec<SpotifyScope>

A Vec of scopes which have been granted for this access_token.

expires_in: u32

The time period (in seconds) for which the access token is valid.

expires_at: Option<i64>

The timestamp for which the token will expire at.

refresh_token: String

A token that can be sent to the Spotify Accounts service in place of an authorization code to request a new access_token.

Trait Implementations

impl Debug for SpotifyToken[src]

impl<'de> Deserialize<'de> for SpotifyToken[src]

impl PartialEq<SpotifyToken> for SpotifyToken[src]

impl Serialize for SpotifyToken[src]

impl StructuralPartialEq for SpotifyToken[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,