Ejemplo n.º 1
0
        /// <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);
        }
Ejemplo n.º 2
0
        /// <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);
        }