Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
en:server_api [2019/05/27 15:50]
yjjung [Server API]
en:server_api [2020/07/29 13:21]
yjjung
Line 22: Line 22:
   * [[BS2_VerifyUserSmallEx]]:​ [+ 2.6.3] Transfers user information mapped to the card or user ID authentication results to the device.   * [[BS2_VerifyUserSmallEx]]:​ [+ 2.6.3] Transfers user information mapped to the card or user ID authentication results to the device.
   * [[BS2_IdentifyUserSmallEx]]:​ [+ 2.6.3] Transfers user information mapped to the fingerprint authentication results to the device.   * [[BS2_IdentifyUserSmallEx]]:​ [+ 2.6.3] Transfers user information mapped to the fingerprint authentication results to the device.
 +  * [[BS2_SetUserPhraseHandler]]:​​ [+ 2.7.0] Configures the server user phrase handler.
 +  * [[BS2_ResponseUserPhrase]]:​​ [+ 2.7.0] Transfers the user phrase to the device.
 ===== Callback Function ====== ===== Callback Function ======
 <code cpp> <code cpp>
Line 31: Line 33:
 2. //​OnIdentifyUser//​ \\  2. //​OnIdentifyUser//​ \\ 
 Callback function that is called when the BioStar application needs to distinguish whether the fingerprint matches. \\  Callback function that is called when the BioStar application needs to distinguish whether the fingerprint matches. \\ 
 +
 +\\
 +
 +==== OnUserPhrase ====
 +개인 메시지를 서버에 요청하는 콜백 함수입니다.
 +<code cpp>
 +typedef void (*OnUserPhrase)(uint32_t deviceId, uint16_t seq, const char* userID);
 +</​code>​
 +\\
 +
 +1. //​deviceId//​ \\ 
 +장치 식별자입니다. ​ \\ \\ 
 +2. //seq// \\ 
 +패킷 일련번호입니다. ​ \\ \\ 
 +3. //userID// \\ 
 +사용자 ID 입니다. ​ \\ \\ 
 +