WCF
Code Block | ||||
---|---|---|---|---|
| ||||
AuthServerU2FResponseSignAppU2F SignAppU2F(string authServerPartnerLoginName, string authServerPartnerLoginPassword, string authServerPartnerUserLoginName, string printedSerialNumber, string b64SessionId, string b64ClientData, string b64SignData); |
...
WCF parameter | data type | description |
---|---|---|
authServerPartnerLoginName | string | SurePassId SurePassID account login name |
authServerPartnerLoginPassword | string | SurePassId SurePassID account login key |
authServerPartnerUserLoginName | string | User account login name |
printedSerialNumber | string | A specific device assigned to this user. If this is left empty then the first device assigned is used |
b64SessionId | string | Unique SessionId for this Fido Request as per the Fido specification |
b64ClientData | string | Base 64 encoded client data as per the Fido specification |
b64SignData | string | Base 64 encoded sign data as per the Fido specification |
...
Code Block | ||||
---|---|---|---|---|
| ||||
if (resp.ErrorCode != 0) { message.Text = resp.ErrorMsg; return false; } |
REST
REST parameter | data type | description |
---|---|---|
spAccountLoginName | string | SurePassId SurePassID account login name |
spAccountLoginKey | string | SurePassId SurePassID account login key |
username | string | user account login name |
type | string | sign |
psn | string | A specific device assigned to this user. If this is left empty then the first device assigned is used |
sessionId | string | Unique sessionId for this Fido Request as per the Fido specification |
clientData | string | Base 64 encoded client data as per the Fido specification |
signatureData | string | Base 64 encoded sign data as per the Fido specification |
version | string | U2F_V2 |
...