}
/**
+ * Encode a key-value pair for use in an authentication header.
+ *
* @param string $key
* @param string $val
+ * @return string
*/
protected function authHeaderChunk($key, $val)
{
}
/**
+ * Ask the Yammer server for a request token, which can be passed on
+ * to authorizeUrl() for the user to start the authentication process.
+ *
* @return array of oauth return data; should contain nice things
*/
public function requestToken()
}
/**
+ * Get a final access token from the verifier/PIN code provided to
+ * the user from Yammer's auth pages.
+ *
* @return array of oauth return data; should contain nice things
*/
public function accessToken($verifier)
}
/**
- * Give the URL to send users to to authorize a new app setup
+ * Give the URL to send users to to authorize a new app setup.
*
* @param string $token as returned from accessToken()
* @return string URL