Hi,
I just found a solution for that blank page after clicking on Authorize New Account.
There was a problem with the send_authed_request() in lib/wp-twitter.php.
If you comment the “if ( ! filter_var…” condition, as shown below, the authorization should pass ok.
public function send_authed_request( $request_url, $method, $body_parameters = array() ) {
$parameters = $this->_get_request_defaults();
$parameters['body'] = wp_parse_args( $body_parameters, $parameters['body'] );
//if ( ! filter_var( $request_url , FILTER_VALIDATE_URL ) )
$request_url = self::get_api_endpoint( $request_url );
$this->sign_request( $parameters, $request_url );