Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

WCF


Code Block
languagec#
title Method
  AuthServerU2FResponseSignAppU2F SignAppU2F(string authServerPartnerLoginName,
                                                              string authServerPartnerLoginPassword,
                                                              string authServerPartnerUserLoginName,
                                                              string printedSerialNumber,
                                                              string b64SessionId,
                                                              string b64ClientData,
                                                              string b64SignData);

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId SurePassID account login name
authServerPartnerLoginPasswordstringSurePassId SurePassID account login key
authServerPartnerUserLoginNamestringUser account login name
printedSerialNumberstringA specific device assigned to this user. If this is left empty then the first device assigned is used
b64SessionIdstringUnique SessionId for this Fido Request as per the Fido specification
b64ClientDatastringBase 64 encoded client data as per the Fido specification
b64SignData stringBase 64 encoded sign data as per the Fido specification

...

Code Block
languagec#
titleSample WCF C# Repsonse
 if (resp.ErrorCode != 0)  {      
       message.Text = resp.ErrorMsg;
       return false;
 }


REST


REST parameterdata typedescription
spAccountLoginNamestringSurePassId SurePassID account login name
spAccountLoginKeystringSurePassId SurePassID account login key
usernamestringuser account login name
typestringsign
psnstringA specific device assigned to this user. If this is left empty then the first device assigned is used
sessionIdstringUnique sessionId for this Fido Request as per the Fido specification
clientDatastringBase 64 encoded client data as per the Fido specification
signatureDatastringBase 64 encoded sign data as per the Fido specification
versionstringU2F_V2

...