TradeMe.Api.Client.Client.AuthenticateWithVerificationCode C# (CSharp) Method

AuthenticateWithVerificationCode() public method

This is the second and final step in the authorisation process. It uses the verification code (retrieved in public string GetVerificationCode()).

It exchanges the verification code for an access token.

Once this step has been performed the user will be enabled to perform authenticated requests.

public AuthenticateWithVerificationCode ( string code ) : void
code string The verification code.
return void
        public void AuthenticateWithVerificationCode(string code)
        {
            _connection.AuthenticateWithVerificationCode(code);
        }
Client