pub struct OAuthParameters<'a, TSM>where
TSM: SignatureMethod + Clone,{ /* private fields */ }
Expand description
Represents OAuth parameters including oauth_nonce, oauth_timestamp, realm, and others.
§Basic usage
use reqwest_oauth1::*;
#[cfg(feature = "blocking")]
use reqwest::blocking::Client as Client;
#[cfg(not(feature = "blocking"))]
use reqwest::Client;
let consumer_key = "[CONSUMER_KEY]";
let consumer_secret = "[CONSUMER_SECRET]";
let secrets = reqwest_oauth1::Secrets::new(consumer_key, consumer_secret);
let nonce = "[NONCE]";
let timestamp = 100_000_001u64;
let callback = "http://example.com/ready";
let params = reqwest_oauth1::OAuthParameters::new()
.nonce(nonce)
.timestamp(timestamp)
.callback(callback);
let req = Client::new()
.oauth1_with_params(secrets, params)
.post("http://example.com/")
// and so on...
;
§Note
You can specify same parameters as get/post queries and they will superseded with the specified one in the OAuthParameters.
use reqwest_oauth1::*;
#[cfg(feature = "blocking")]
use reqwest::blocking::Client as Client;
#[cfg(not(feature = "blocking"))]
use reqwest::Client;
let consumer_key = "[CONSUMER_KEY]";
let consumer_secret = "[CONSUMER_SECRET]";
let secrets = reqwest_oauth1::Secrets::new(consumer_key, consumer_secret);
let params = reqwest_oauth1::OAuthParameters::new()
.nonce("ThisNonceWillBeSuperseded");
let req = Client::new()
.oauth1_with_params(secrets, params)
.get("http://example.com/")
.query(&[("nonce", "ThisNonceWillSupersedeTheOldOne")])
// and so on...
;
Implementations§
Source§impl<'a, TSM> OAuthParameters<'a, TSM>where
TSM: SignatureMethod + Clone,
impl<'a, TSM> OAuthParameters<'a, TSM>where
TSM: SignatureMethod + Clone,
Sourcepub fn realm<T>(self, realm: T) -> Self
pub fn realm<T>(self, realm: T) -> Self
set the realm value
§Note
this parameter will not be included in the signature-base string. cf. https://tools.ietf.org/html/rfc5849#section-3.4.1.3.1
Sourcepub fn version<T>(self, version: T) -> Self
pub fn version<T>(self, version: T) -> Self
set the oauth_version value (boolean)
§Note
When the version has value true
, oauth_version will be set with “1.0”.
Otherwise, oauth_version will not be included in your request.
In oauth1, oauth_version value must be “1.0” or not specified.
pub fn signature_method<T>(self, signature_method: T) -> OAuthParameters<'a, T>where
T: SignatureMethod + Clone,
Trait Implementations§
Source§impl<'a, TSM> Clone for OAuthParameters<'a, TSM>
impl<'a, TSM> Clone for OAuthParameters<'a, TSM>
Source§fn clone(&self) -> OAuthParameters<'a, TSM>
fn clone(&self) -> OAuthParameters<'a, TSM>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, TSM> Debug for OAuthParameters<'a, TSM>
impl<'a, TSM> Debug for OAuthParameters<'a, TSM>
Auto Trait Implementations§
impl<'a, TSM> Freeze for OAuthParameters<'a, TSM>where
TSM: Freeze,
impl<'a, TSM> RefUnwindSafe for OAuthParameters<'a, TSM>where
TSM: RefUnwindSafe,
impl<'a, TSM> Send for OAuthParameters<'a, TSM>where
TSM: Send,
impl<'a, TSM> Sync for OAuthParameters<'a, TSM>where
TSM: Sync,
impl<'a, TSM> Unpin for OAuthParameters<'a, TSM>where
TSM: Unpin,
impl<'a, TSM> UnwindSafe for OAuthParameters<'a, TSM>where
TSM: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more