Definition at line 110 of file OAuth.php.
◆ build_signature()
OAuthSignatureMethod_PLAINTEXT::build_signature |
( |
|
$request, |
|
|
|
$consumer, |
|
|
|
$token |
|
) |
| |
Definition at line 117 of file OAuth.php.
118 {
119 $sig = array(
121 );
122
125 } else {
126 array_push($sig, '');
127 }
128
129 $raw = implode("&", $sig);
130
131 $request->base_string = $raw;
132
134 }
static urlencode_rfc3986($input)
References $token, and OAuthUtil\urlencode_rfc3986().
◆ get_name()
OAuthSignatureMethod_PLAINTEXT::get_name |
( |
| ) |
|
Definition at line 112 of file OAuth.php.
113 {
114 return "PLAINTEXT";
115 }
The documentation for this class was generated from the following file: