You are here

public function OAuthSignatureMethod_PLAINTEXT::get_name in jQuery social stream 8

Same name and namespace in other branches
  1. 8.2 src/Twitter/OAuthSignatureMethod_PLAINTEXT.php \Drupal\jquery_social_stream\Twitter\OAuthSignatureMethod_PLAINTEXT::get_name()

Needs to return the name of the Signature Method (ie HMAC-SHA1)

Return value

string

Overrides OAuthSignatureMethod::get_name

File

src/Twitter/OAuthSignatureMethod_PLAINTEXT.php, line 11

Class

OAuthSignatureMethod_PLAINTEXT
The PLAINTEXT method does not provide any security protection and SHOULD only be used over a secure channel such as HTTPS. It does not use the Signature Base String.

Namespace

Drupal\jquery_social_stream\Twitter

Code

public function get_name() {
  return "PLAINTEXT";
}