Hướng dẫn
FPT.AI Reader - Xác thực khuôn mặt
Hướng dẫn sử dụng API
Xác thực
Hệ thống Facematch được kết nối với FPT Gateways, vì vậy nhà phát triển cần tạo tài khoản tại Console và tạo API key để sử dụng được API này (mặc định API key mới chỉ sử dụng được 1000 requests)
API key phải được đặt ở headers của tất cả các request như sau:
api_key: generated_API_key
Kiểm tra độ giống nhau của 2 khuôn mặt trong 2 ảnh
Dùng Python
import requests
url = 'https://api.fpt.ai/dmp/checkface/v1'
headers = {
'api_key': 'xxxxxxxxxx'
}
files = [
('file[]', open('/tmp/image1.jpg', 'rb')),
('file[]', open('/tmp/image2.jpg', 'rb'))
]
r = requests.post(url, headers=headers, files=files)
Dùng Shell
curl --location --request POST 'https://api.fpt.ai/dmp/checkface/v1' \
--header 'api_key: xxxxxxxxxx' \
--form 'file[]=@/private/tmp/image1.jpg' \
--form 'file[]=@/private/tmp/image2.jpg'
Dùng phần mềm Postman
Headers
Body