// access tokens and request tokens
* secret = the token secret
function __construct($key, $secret) {
* generates the basic string serialization of a token that a server
* would respond to request_token and access_token calls with
Util::urlencode_rfc3986($this->key) .
Util::urlencode_rfc3986($this->secret);
return $this->to_string();