用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
Face List - List Face Lists 获取所有存在的face lists信息,信息包含:faceListId, name and userData。通过Face List - Get a Face List方法返回facelist中face数据。 Http Method GET Request URL `https://api.cognitive.azure.cn/face/v1.0/facelists ` Request headers | 请求头 |类型 |描述 | | --- | --- | --- | | Ocp-Apim-Subscription-Key | string | Subscription key which provides access to this API. Found in your Cognitive Services accounts. | Request body Response 200 请求成功返回facelist组成的数组 | Fields | Type| Description | | --- | --- | --- | | faceListId| String | Face list ID | | name | String | 用户指定的face list name| | userData | String | Face list绑定的用户提供的数据 | ~~~ [ { "faceListId": "sample_list", "name": "list1", "userData":"User-provided data attached to the face list" }, … ] ~~~ Response 401 | Error Code | Error Message Description | | --- | --- | | Unspecified | 无效的subscription Key 或user/plan 被冻结 | ~~~ { "error":{ "code": "Unspecified", "message": "Access denied due to invalid subscription key. Make sure you are subscribed to an API you are trying to call and provide the right key." } } ~~~ Response 403 ~~~ { "error":{ "statusCode": 403, "message": "Out of call volume quota. Quota will be replenished in 2.12 days." } } ~~~ Response 429 ~~~ { "error":{ "statusCode": 429, "message": "Rate limit is exceeded. Try again in 26 seconds." } } ~~~