/// <inheritdoc /> protected override IHttpResponse GetAccessTokenResponse(string verifier) { // Get the response from the base class IHttpResponse response = base.GetAccessTokenResponse(verifier); // Validate the response VimeoResponse.ValidateResponse(response); // Return the response return(response); }
/// <inheritdoc /> protected override IHttpResponse GetRequestTokenResponse() { // Get the response from the base class IHttpResponse response = base.GetRequestTokenResponse(); // Validate the response VimeoResponse.ValidateResponse(response); // Return the response return(response); }