OAuth Signature
Creating the OAuth Signature is a multi-stage process.
- First uses will need to create an HMAC Sha256 hash of the encoded base string
- You must use a Base64 byte array of our live session token as the Key value.
- Then, hash the encoded byte string using our new HMAC Sha256 object.
- Convert the resulting bytes into a Base64 encoded string.
- Then URI escape our string, again using Rfc3986, to receive our final oauth_signature value.

