Skip to content
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

Face API Service call failed #9

Open
sandeep5793 opened this issue Jan 17, 2022 · 7 comments
Open

Face API Service call failed #9

sandeep5793 opened this issue Jan 17, 2022 · 7 comments

Comments

@sandeep5793
Copy link

sandeep5793 commented Jan 17, 2022

I am getting this issue while using FaceSDK.matchFaces api in app for face matching . Earlier it was working fine and i was getting the response as required.

But now i am getting this as reponse
Screenshot 2022-01-17 at 5 55 15 PM

Stuck at this point

@pkandrashkou
Copy link

Hello @sandeep5793! Thanks for opening the issue!

Could you please provide us with more information about your environment by answering the following questions?

  • What's the FaceSDK version?
  • What's the React-Native version?
  • What was the FaceSDK version it used to work with?
  • What was the React-Native it used to work with?
  • Is the web service for FaceSDK self-hosted?
  • Could you give us an example of the request parameters? (Please cut out the bitmaps if you wish.)

Any other diagnostics information will be appreciated!

@vedantkulkarni
Copy link

vedantkulkarni commented Aug 15, 2022

Hi, I'm also facing this same error but on Rugula Face Flutter SDK.
I'm using flutter_face_api: ^3.0.0
Dart 2.17.6
Flutter 3.0.5 • channel stable

I'm getting error code 8 with message " Face API Service call failed. "

If there's any work around for this issue, please let me know, cause I need to use it on an urgent basis.

@MuhammadMurodbek
Copy link

MuhammadMurodbek commented Mar 26, 2023

#fixed

Hi. I was facing this issue on Android when I used to match local image that is in cache.

I allowed permissions for WRITE/READ external storage from device.
And don't forget to assign [ImageType] for selected image before matching.

So everything worked properly but matching was slower than IOS.

@neilakoh
Copy link

#fixed

Hi. I was facing this issue on Android when I used to match local image that is in cache.

I allowed permissions for WRITE/READ external storage from device. And don't forget to assign ImageType for selected image before matching.

So everything worked properly but matching was slower than IOS.

I added these permissions in the manifest . .

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

still not working . . any suggestion?

@neilakoh
Copy link

Nevermind, it works now . . the issue was the image type . . I changed it from

const TYPE = ImageType. IMAGE_TYPE_PRINTED;

to

const TYPE = ImageType.PRINTED;

@MuhammadMurodbek
Copy link

MuhammadMurodbek commented Apr 12, 2023

@neilakoh Well done!!. But did you notice that matching on AOS is slower than IOS ?
I couldn't find a solution for this. So how is it working on your side?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

6 participants
@pkandrashkou @neilakoh @vedantkulkarni @sandeep5793 @MuhammadMurodbek and others