Horde_Oauth_Request::getSignatureBaseString PHP Method

getSignatureBaseString() public method

The base string is defined as the method, the url and the parameters (normalized), each urlencoded and concatenated with &.
    public function getSignatureBaseString()
    {
        $parts = array($this->_getNormalizedHttpMethod(), $this->_getNormalizedUrl(), $this->_getSignableParameters());
        return implode('&', array_map(array('Horde_Oauth_Utils', 'urlencodeRfc3986'), $parts));
    }