From 17ff8aec3a0d2e0a520849c42c40a154a0831495 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 22 May 2023 15:37:34 -0500 Subject: initial commit --- vendor/eher/oauth/src/Eher/OAuth/Token.php | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create 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 new file mode 100644 index 0000000..e1d9f65 --- /dev/null +++ b/vendor/eher/oauth/src/Eher/OAuth/Token.php @@ -0,0 +1,34 @@ +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-70-g09d2