[][src]Function twitter_client::auth::access_token

pub fn access_token<C, T, S, B>(
    client_credentials: &Credentials<C>,
    temporary_credentials: &Credentials<T>,
    oauth_verifier: &str,
    client: &mut S
) -> AuthFuture<AccessToken, S::Future>

Notable traits for AuthFuture<T, F>

impl<T: AuthDeserialize, F: HttpTryFuture> Future for AuthFuture<T, F> type Output = Result<T, Error<F::Error, <F::Body as Body>::Error>>;
where
    C: AsRef<str>,
    T: AsRef<str>,
    S: HttpService<B>,
    B: Default