-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you please guys share the implementation in the angular way? #9
Comments
I add in the app.module.ts
But i'm getting new errors
|
Probably duplicate of #5. |
I tried all the implementations specified there but I'm still getting these errors The vertx error was gone
Maybe is something with the configuration in my ts file? any ideas? |
I try to implement the SDK with the implementation described in the Developer Guide in "the Javascript API" But I think that is an old specification, maybe It would work to implement enrollment and authentication? That's the only think that I have to do. In the specification, you have a method that returns a sample from the user's finger, when you |
Probably the Typescript compiler in your project cannot find the The The documentation referred by the link is an older Fingerprint WebApi ( The If you also need enrollment and authentication with DigitalPersona Web Services, you can use |
Sorry for my late response, Great!, thanks for the support the better solution was this (Angular 9) if anyone needs
Now I have another problem, I need to do the enrollment and the authentications with the sample users Which requirements do I need to do this? In your official documentation you have this method
But what means this? My requirement its compare to fingerprints to authenticate the user, that's my general purpose Thanks |
Answered here
This task is out of scope of the One solution is to use DigitalPersona Authentication Server, which is a Windows service integrated with ActiveDirectory and/or LDS accounts. It includes DigitalPersona Access Management Web Services (DPAM) and corresponding Web APIs (like Another option is to use any other fingerprint matching engine supporting one of fingerprint template formats, and implement your own biometric authentication web service, backed with your own biometric data store and the matching engine of your choice, and with your own JS client library. In this case you won't be able to use |
Thank you for the response, My solution was to do only the user sample capturing with the @digitalpersona/devices, and for the enrollment and authentication I made my solution in .NET with the SDK, receiving the input and outputting if the verification was successful |
Tried @ArmandoPerdomo's solution and I managed to make it work. But after trying
I got this error from channel.js
Seems like I'm missing something |
Do you have a DigitalPersona Workstation or DigitalPersona Lite Client installed? See the #5 (comment) |
Your solution works fine but there is a problem if the build of the application is made with jenkins. Jenkins will download a fresh library with the import line not commented. Is there any suggestion on how to manage that situation? |
Thank you very much @ArmandoPerdomo for the guide <3. The lib is working fine for me with Angular 11, but I have 2 warnings:
How to solve those warnings ? |
Where and when do you have these warnings? Make sure you load the WebSdk module only into the browser using a regular |
I am really sorry for the delay...
Just after following @ArmandoPerdomo guide. This is the service code:
|
|
Yes.
I did and it works well without warnings. I did't need to declare the WebSdk as a "global/external" library (will be any expected errors later?) .
I didn't try. I think it is not needed. |
Was the issue resolved in the end? To clarify: did you fix it just by loading WebSdk into a page via
It depends on the WebSdk itself, I cannot say for sure as I'm not a maintainer of WebSdk and never did such tests. If you have two copies of the lib, then in the best case a second copy just redefines the same globals (or bails if they are already defined), and only one of them will be used; the only downside will be an increased JS load size. In worst case different parts of your code may start using different instances of it, which may cause unexpected and hard to detect issues. To be on a safe side, I'd recommend to check bundles to ensure they do not contain WebSdk code. |
Yes. |
Sorry for asking here, but how can I download the .NET SDK? I google it but can't find anything? |
Sorry for my ambiguous question, I was asking for PersonaDigital SDK for .Net environment! |
The DigitalPersona .NET SDK is a part of the DigitalPersona Native API, which is installed automatically with one of DigitalPersona client products:
The DigitalPersona SDK can also be purchased separately. Please inquire HID customer service team. |
Hello Armando, have you an example of this implementation? |
we made a DLL to be able to use the .NET library, and from there we make the comparison. Then we call the DLL with electron-edge-js. For support write me, [email protected] |
Do you have a documentation or something like that? I want to do the same, but I do not know anything about .NET |
Hello. What would you love me to do?
…On Fri, 17 Mar 2023 at 22:20, Luis Carrillo ***@***.***> wrote:
Thank you for the response,
My solution was to do only the user sample capturing with the
@digitalpersona/devices, and for the enrollment and authentication I made
my solution in .NET with the SDK, receiving the input and outputting if the
verification was successful
Do you have a documentation or something like that? I want to do the same,
but I do not know anything about .NET
—
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AWHXF5AHBBCOV2DDVAB4BDDW4S2Q3ANCNFSM4UH7ZFYA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Hey can you achieve this? |
Hello Guys, sorry for the late response |
Hello, can you please guys share the solution in the angular way?
I try the following
npm install @digitalpersona/devices
But in my console still getting errors
am I missing something?
Originally posted by @ArmandoPerdomo in #2 (comment)
The text was updated successfully, but these errors were encountered: