From a98c2a4542e19ce4fb632bc32fc47c18273161cc Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 1 Mar 2026 19:32:52 -0600 Subject: convert from PHP to Go --- vendor/eher/oauth/src/Eher/OAuth/Token.php | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 vendor/eher/oauth/src/Eher/OAuth/Token.php (limited to 'vendor/eher/oauth/src/Eher/OAuth/Token.php') diff --git a/vendor/eher/oauth/src/Eher/OAuth/Token.php b/vendor/eher/oauth/src/Eher/OAuth/Token.php deleted file mode 100644 index e1d9f65..0000000 --- a/vendor/eher/oauth/src/Eher/OAuth/Token.php +++ /dev/null @@ -1,34 +0,0 @@ -key = $key; - $this->secret = $secret; - } - - /** - * generates the basic string serialization of a token that a server - * would respond to request_token and access_token calls with - */ - function to_string() { - return "oauth_token=" . - Util::urlencode_rfc3986($this->key) . - "&oauth_token_secret=" . - Util::urlencode_rfc3986($this->secret); - } - - function __toString() { - return $this->to_string(); - } -} - -- cgit v1.2.3