7 calls to OAuthUtil::urlencode_rfc3986() in OAuth 1.0 6.3
- OAuthRequest::get_signature_base_string in lib/
OAuth.php - Returns the base string of this request
- OAuthRequest::to_header in lib/
OAuth.php - builds the Authorization: header
- OAuthSignatureMethod_HMAC::build_signature in includes/
OAuthSignatureMethod_HMAC.inc - Build up the signature NOTE: The output of this function MUST NOT be urlencoded. the encoding is handled in OAuthRequest when the final request is serialized
- OAuthSignatureMethod_HMAC_SHA1::build_signature in lib/
OAuth.php - Build up the signature NOTE: The output of this function MUST NOT be urlencoded. the encoding is handled in OAuthRequest when the final request is serialized
- OAuthSignatureMethod_PLAINTEXT::build_signature in lib/
OAuth.php - 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.
- OAuthToken::to_string in lib/
OAuth.php - generates the basic string serialization of a token that a server would respond to request_token and access_token calls with
- OAuthUtil::build_http_query in lib/
OAuth.php