| Package | com.yahoo.oauth |
| Interface | public interface IOAuthSignatureMethod |
| Implementors | OAuthSignatureMethod |
See also
| Property | Defined by | ||
|---|---|---|---|
| name : String [read-only]
The name of the signature method.
| IOAuthSignatureMethod | ||
| Method | Defined by | ||
|---|---|---|---|
|
Class contructor.
| IOAuthSignatureMethod | ||
|
buildSignature(request:OAuthRequest):String
Signs the request.
| IOAuthSignatureMethod | ||
|
checkSignature(signature:String, request:OAuthRequest):Boolean
Validates the given signature against a generated signature from the request.
| IOAuthSignatureMethod | ||
| name | property |
name:String [read-only]The name of the signature method.
Implementation public function get name():String
| buildSignature | () | method |
public function buildSignature(request:OAuthRequest):StringSigns the request.
Parametersrequest:OAuthRequest |
String |
| checkSignature | () | method |
public function checkSignature(signature:String, request:OAuthRequest):BooleanValidates the given signature against a generated signature from the request.
Parameterssignature:String |
|
request:OAuthRequest |
Boolean — A Boolean, true if the signature provided matches the signature built from the request.
|