Face Enroll

ÜCRETSİZ PREMIUM
Verified
Taraf PresentID | Güncelleyen 7 days ago | Visual Recognition
Popülerlik

0.2 / 10

Gecikme

1,312ms

Hizmet Düzeyi

100%

Health Check

N/A

Tüm Eğitimlere Dön (2)

Login By Face

import requests


url = "https://face-enroll1.p.rapidapi.com/Login"

payload = "-----011000010111000001101001\r
Content-Disposition: form-data; name=\"photo\"\r
\r
\r
-----011000010111000001101001\r
Content-Disposition: form-data; name=\"personID\"\r
\r
<REQUIRED>\r
-----011000010111000001101001--\r
\r
"
headers = {
    'content-type': "multipart/form-data; boundary=---011000010111000001101001",
    'x-rapidapi-key': "f485496ab8msh2ea068a0bbe333cp179f86jsn2b4afe8962dd",
    'x-rapidapi-host': "face-enroll1.p.rapidapi.com"
    }

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)

If the value of the isLoginfield is true, the submitted image matches the enrolled user.