*/ interface OAuthTokenProvider { /** * Generate a base64-encoded OAuth token ensuring that the access token has not expired. * The string to be base 64 encoded should be in the form: * "user=\001auth=Bearer \001\001" * * @return string */ public function getOauth64(); }