You are here

abstract public function sOAuthSignatureMethod::build_signature in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.js.inc \sOAuthSignatureMethod::build_signature()

Build up the signature NOTE: The output of this function MUST NOT be urlencoded. the encoding is handled in sOAuthRequest when the final request is serialized

Parameters

sOAuthRequest $request:

sOAuthConsumer $consumer:

sOAuthToken $token:

Return value

string

1 call to sOAuthSignatureMethod::build_signature()
sOAuthSignatureMethod::check_signature in ./jquery_social_stream.js.inc
Verifies that a given signature is correct
3 methods override sOAuthSignatureMethod::build_signature()
sOAuthSignatureMethod_HMAC_SHA1::build_signature in ./jquery_social_stream.js.inc
Build up the signature NOTE: The output of this function MUST NOT be urlencoded. the encoding is handled in sOAuthRequest when the final request is serialized
sOAuthSignatureMethod_PLAINTEXT::build_signature in ./jquery_social_stream.js.inc
oauth_signature is set to the concatenated encoded values of the Consumer Secret and Token Secret, separated by a '&' character (ASCII code 38), even if either secret is empty. The result MUST be encoded again.
sOAuthSignatureMethod_RSA_SHA1::build_signature in ./jquery_social_stream.js.inc
Build up the signature NOTE: The output of this function MUST NOT be urlencoded. the encoding is handled in sOAuthRequest when the final request is serialized

File

./jquery_social_stream.js.inc, line 531
JS callbacks.

Class

sOAuthSignatureMethod
A class for implementing a Signature Method See section 9 ("Signing Requests") in the spec

Code

public abstract function build_signature($request, $consumer, $token);