public function OAuthSignatureMethod_PLAINTEXT::verify in Lingotek Translation 7.2
Same name and namespace in other branches
- 7.3 lib/oauth-php/library/signature_method/OAuthSignatureMethod_PLAINTEXT.php \OAuthSignatureMethod_PLAINTEXT::verify()
* Check if the request signature corresponds to the one calculated for the request. * *
Parameters
OAuthRequest request: * @param string base_string data to be signed, usually the base string, can be a request body * @param string consumer_secret * @param string token_secret * @param string signature from the request, still urlencoded * @return string
Overrides OAuthSignatureMethod::verify
File
- lib/
oauth-php/ library/ signature_method/ OAuthSignatureMethod_PLAINTEXT.php, line 69
Class
Code
public function verify($request, $base_string, $consumer_secret, $token_secret, $signature) {
$a = $request
->urldecode($signature);
$b = $request
->urldecode($this
->signature($request, $base_string, $consumer_secret, $token_secret));
return $request
->urldecode($a) == $request
->urldecode($b);
}