Generate the signature base that is used to produce the signature

C# | Visual Basic | Visual C++ |
public string GenerateSignatureBase( Uri url, string consumerKey, string token, string tokenSecret, string httpMethod, string timeStamp, string nonce, string signatureType, out string normalizedUrl, out string normalizedRequestParameters )
Public Function GenerateSignatureBase ( _ url As Uri, _ consumerKey As String, _ token As String, _ tokenSecret As String, _ httpMethod As String, _ timeStamp As String, _ nonce As String, _ signatureType As String, _ <OutAttribute> ByRef normalizedUrl As String, _ <OutAttribute> ByRef normalizedRequestParameters As String _ ) As String

- url (Uri)
- The full url that needs to be signed including its non OAuth url parameters
- consumerKey (String)
- The consumer key
- token (String)
- The token, if available. If not available pass null or an empty string
- tokenSecret (String)
- The token secret, if available. If not available pass null or an empty string
- httpMethod (String)
- The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc)
- timeStamp (String)
- nonce (String)
- signatureType (String)
- The signature type. To use the default values use OAuthBase.SignatureTypes.
- normalizedUrl ( String %)
- normalizedRequestParameters ( String %)

The signature base