Struct reqwest_oauth1::OAuthParameters
source · 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::OAuthClientProvider;
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 = reqwest::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::OAuthClientProvider;
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 = reqwest::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 callback<T>(self, callback: T) -> Selfwhere
T: Into<Cow<'a, str>>,
pub fn callback<T>(self, callback: T) -> Selfwhere T: Into<Cow<'a, str>>,
set the oauth_callback value
sourcepub fn realm<T>(self, realm: T) -> Selfwhere
T: Into<Cow<'a, str>>,
pub fn realm<T>(self, realm: T) -> Selfwhere T: Into<Cow<'a, str>>,
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 timestamp<T>(self, timestamp: T) -> Selfwhere
T: Into<u64>,
pub fn timestamp<T>(self, timestamp: T) -> Selfwhere T: Into<u64>,
set the oauth_timestamp value
sourcepub fn verifier<T>(self, verifier: T) -> Selfwhere
T: Into<Cow<'a, str>>,
pub fn verifier<T>(self, verifier: T) -> Selfwhere T: Into<Cow<'a, str>>,
set the oauth_verifier value
sourcepub fn version<T>(self, version: T) -> Selfwhere
T: Into<bool>,
pub fn version<T>(self, version: T) -> Selfwhere T: Into<bool>,
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>where
TSM: SignatureMethod + Clone + Clone,
impl<'a, TSM> Clone for OAuthParameters<'a, TSM>where TSM: SignatureMethod + Clone + Clone,
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>where
TSM: SignatureMethod + Clone + Debug,
impl<'a, TSM> Debug for OAuthParameters<'a, TSM>where TSM: SignatureMethod + Clone + Debug,
Auto Trait Implementations§
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