I want to send a HTTP post like this
or via curl
How can I write the code? I'm a novice so I read other similar thread but still dont know how to do. Please help me with this example
Code:
POST /person/takeFacePicture HTTP/1.1
Host: partner.hanet.ai
Content-Length: 48
token=%3CACCESS_TOKEN%3E&deviceID=%3CdeviceID%3E
or via curl
Code:
curl --location --request POST 'https://partner.hanet.ai/person/takeFacePicture' \
--data-urlencode 'token=<ACCESS_TOKEN>' \
--data-urlencode 'deviceID=<deviceID>'
How can I write the code? I'm a novice so I read other similar thread but still dont know how to do. Please help me with this example