SFTP Object
 
Syntax
 
SFTP.StartKeyboardAuth(login As String) As String
 
Description
Begins keyboard-interactive authentication with the SSH server. Returns an XML string providing the name, instruction, and prompts. The XML has the following format:
 
<infoRequest numPrompts="N">
    <name>name_string</name>
    <instruction>instruction_string</instruction>
    <prompt1 echo="1_or_0">prompt_string</prompt1>
    ...
    <promptN echo="1_or_0">prompt_string</promptN>
</infoRequest>
 
If the authentication immediately succeeds because no password is required, or immediately fails, the XML response can be:
 
<success>success_message</success>
 
or
<error>error_message</error>
 
Returns Nothing on failure
 
See Also