<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"
}
}
错误码定义 0 (0%) 好评 | 0 (0%) 中评 | 0 (0%) 差评 |