产品详情
API参数 人脸卡通化 调用地址: http,https://minivision.api.bdymkt.com/api/v1/cartoon/self_cartoon 请求方式: POST 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 请求参数(Body)
- 名称
- 类型
- 是否必须
- 示例值
- 描述
- imageUrl
- string
- false
- http://119.3.101.135:10777/file/down/group1/M00/B1/2D/wKiP3F67ZaKAOni_AAHH0AtRfM4879.jpg
- --
- needFilter
- boolean
- false
- false
- --
- filterName
- string
- false
- niandai
- --
<dependency>
<groupId>com.baidubce</groupId>
<artifactId>api-explorer-sdk</artifactId>
<version>1.0.0</version>
</dependency>
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;
// 人脸卡通化 Java示例代码
public class RequestDemo {
public static void main(String[] args) {
String path = "http://gwgp-hp2obrpgj2z.n.bdcloudapi.com/api/v1/cartoon/self_cartoon";
ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.POST, path);
request.setCredentials("您的 access key", "您的 secret key");
request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
ApiExplorerClient client = new ApiExplorerClient(new AppSigner());
try {
ApiExplorerResponse response = client.sendRequest(request);
// 返回结果格式为Json字符串
System.out.println(response.getResult());
} catch (Exception e) {
e.printStackTrace();
}
}
}
点击复制代码
正常返回示例 {
"requestId": "miniaiapiagw33647891673723158487042783237570494",
"timeUsed": 258,
"status": 0,
"data": {
"base64": "卡通化之后的图片base64",
"imageId":"123123"
}
}
失败返回示例 {
"requestId": "miniaiapiagw3364813287083275-3669894285204753722",
"timeUsed": 0,
"status": -1,
"message": "[413002:IMAGE_IS_NULL:必须传入图片]",
"data": {
"errorCode": 413002,
"timestamp": 1583717427987,
"errorMessage": "[413002:IMAGE_IS_NULL:必须传入图片]",
"path": "/apiagw/api/v1/catoon/self_catoon"
}
}
错误码定义
