 | openAuthToolsGenerateSignatureBase Method |
Home | imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Generate the signature base that is used to produce the signature
Namespace:
imbACE.Network.authorization
Assembly:
imbACE.Network (in imbACE.Network.dll) Version: 0.2
Syntaxpublic string GenerateSignatureBase(
Uri url,
string consumerKey,
string token,
string tokenSecret,
string httpMethod,
string timeStamp,
string nonce,
string signatureType,
out string normalizedUrl,
out string normalizedRequestParameters
)
Request Example
View SourceParameters
- url
- Type: SystemUri
The full url that needs to be signed including its non OAuth url parameters - consumerKey
- Type: SystemString
The consumer key - token
- Type: SystemString
The token, if available. If not available pass null or an empty string - tokenSecret
- Type: SystemString
The token secret, if available. If not available pass null or an empty string - httpMethod
- Type: SystemString
The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc) - timeStamp
- Type: SystemString
- nonce
- Type: SystemString
- signatureType
- Type: SystemString
The signature type. To use the default values use OAuthBase.SignatureTypes. - normalizedUrl
- Type: SystemString
- normalizedRequestParameters
- Type: SystemString
Return Value
Type:
StringThe signature base
See Also