com.lark.oapi.service.hire.v1.resource.WebsiteDelivery Maven / Gradle / Ivy
Show all versions of oapi-sdk Show documentation
// Code generated by lark suite oapi sdk gen
/*
* MIT License
*
* Copyright (c) 2022 Lark Technologies Pte. Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.lark.oapi.service.hire.v1.resource;
import com.lark.oapi.core.token.AccessTokenType;
import com.lark.oapi.core.Transport;
import com.lark.oapi.core.response.RawResponse;
import com.lark.oapi.core.utils.UnmarshalRespUtil;
import com.lark.oapi.core.utils.Jsons;
import com.lark.oapi.core.utils.Sets;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.nio.charset.StandardCharsets;
import com.lark.oapi.core.Config;
import com.lark.oapi.core.request.RequestOptions;
import java.io.ByteArrayOutputStream;
import com.lark.oapi.service.hire.v1.model.*;
import java.io.*;
import java.util.Map;
import java.util.HashMap;
import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
public class WebsiteDelivery {
private static final Logger log = LoggerFactory.getLogger(WebsiteDelivery.class);
private final Config config;
public WebsiteDelivery(Config config) {
this.config = config;
}
/**
* 根据简历附件解析创建官网投递,根据简历附件解析创建官网投递
* 官网API文档链接:https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment ;
*
使用Demo链接: https://github.com/larksuite/oapi-sdk-java/tree/v2_main/sample/src/main/java/com/lark/oapi/sample/apiall/hirev1/CreateByAttachmentWebsiteDeliverySample.java ;
*/
public CreateByAttachmentWebsiteDeliveryResp createByAttachment(CreateByAttachmentWebsiteDeliveryReq req, RequestOptions reqOptions) throws Exception {
// 请求参数选项
if (reqOptions == null) {
reqOptions = new RequestOptions();
}
// 发起请求
RawResponse httpResponse = Transport.send(config, reqOptions, "POST"
, "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_attachment"
, Sets.newHashSet(AccessTokenType.Tenant)
, req);
// 反序列化
CreateByAttachmentWebsiteDeliveryResp resp = UnmarshalRespUtil.unmarshalResp(httpResponse, CreateByAttachmentWebsiteDeliveryResp.class);
if (resp == null) {
log.error(String.format(
"%s,callError,req=%s,respHeader=%s,respStatusCode=%s,respBody=%s,", "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_attachment"
, Jsons.DEFAULT.toJson(req), Jsons.DEFAULT.toJson(httpResponse.getHeaders()),
httpResponse.getStatusCode(), new String(httpResponse.getBody(),
StandardCharsets.UTF_8)));
throw new IllegalArgumentException("The result returned by the server is illegal");
}
resp.setRawResponse(httpResponse);
resp.setRequest(req);
return resp;
}
/**
* 根据简历附件解析创建官网投递,根据简历附件解析创建官网投递
*
官网API文档链接:https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_attachment ;
*
使用Demo链接: https://github.com/larksuite/oapi-sdk-java/tree/v2_main/sample/src/main/java/com/lark/oapi/sample/apiall/hirev1/CreateByAttachmentWebsiteDeliverySample.java ;
*/
public CreateByAttachmentWebsiteDeliveryResp createByAttachment(CreateByAttachmentWebsiteDeliveryReq req) throws Exception {
// 请求参数选项
RequestOptions reqOptions = new RequestOptions();
// 发起请求
RawResponse httpResponse = Transport.send(config, reqOptions, "POST"
, "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_attachment"
, Sets.newHashSet(AccessTokenType.Tenant)
, req);
// 反序列化
CreateByAttachmentWebsiteDeliveryResp resp = UnmarshalRespUtil.unmarshalResp(httpResponse, CreateByAttachmentWebsiteDeliveryResp.class);
if (resp == null) {
log.error(String.format(
"%s,callError,req=%s,respHeader=%s,respStatusCode=%s,respBody=%s,", "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_attachment"
, Jsons.DEFAULT.toJson(req), Jsons.DEFAULT.toJson(httpResponse.getHeaders()),
httpResponse.getStatusCode(), new String(httpResponse.getBody(),
StandardCharsets.UTF_8)));
throw new IllegalArgumentException("The result returned by the server is illegal");
}
resp.setRawResponse(httpResponse);
resp.setRequest(req);
return resp;
}
/**
* 创建官网投递,创建官网投递。
*
对于自定义字段,若字段类型为单行文本,传值格式为"这是一个单行文本";若字段类型为多行文本,传值格式为"这是一个多行文本";若字段类型为单选,传值内容为选项的 ID,格式为"1";若字段类型为多选,传值内容为选项的ID 列表,格式为"["2", "3" ]";若字段类型为时间段,传值格式为"["1609430400000", "1612108800000" ]",单位是毫米级时间戳,结束时间是「至今」时,用「"-1"」表示;若字段类型为年份选择,传值格式为"1609430400000",单位是毫秒级时间戳;若字段类型为月份选择,传值格式为"1625068800000",单位是毫秒级时间戳;若字段类型为数字,传值格式为"1" ;
*
官网API文档链接:https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_resume ;
*
使用Demo链接: https://github.com/larksuite/oapi-sdk-java/tree/v2_main/sample/src/main/java/com/lark/oapi/sample/apiall/hirev1/CreateByResumeWebsiteDeliverySample.java ;
*/
public CreateByResumeWebsiteDeliveryResp createByResume(CreateByResumeWebsiteDeliveryReq req, RequestOptions reqOptions) throws Exception {
// 请求参数选项
if (reqOptions == null) {
reqOptions = new RequestOptions();
}
// 发起请求
RawResponse httpResponse = Transport.send(config, reqOptions, "POST"
, "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_resume"
, Sets.newHashSet(AccessTokenType.Tenant)
, req);
// 反序列化
CreateByResumeWebsiteDeliveryResp resp = UnmarshalRespUtil.unmarshalResp(httpResponse, CreateByResumeWebsiteDeliveryResp.class);
if (resp == null) {
log.error(String.format(
"%s,callError,req=%s,respHeader=%s,respStatusCode=%s,respBody=%s,", "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_resume"
, Jsons.DEFAULT.toJson(req), Jsons.DEFAULT.toJson(httpResponse.getHeaders()),
httpResponse.getStatusCode(), new String(httpResponse.getBody(),
StandardCharsets.UTF_8)));
throw new IllegalArgumentException("The result returned by the server is illegal");
}
resp.setRawResponse(httpResponse);
resp.setRequest(req);
return resp;
}
/**
* 创建官网投递,创建官网投递。
*
对于自定义字段,若字段类型为单行文本,传值格式为"这是一个单行文本";若字段类型为多行文本,传值格式为"这是一个多行文本";若字段类型为单选,传值内容为选项的 ID,格式为"1";若字段类型为多选,传值内容为选项的ID 列表,格式为"["2", "3" ]";若字段类型为时间段,传值格式为"["1609430400000", "1612108800000" ]",单位是毫米级时间戳,结束时间是「至今」时,用「"-1"」表示;若字段类型为年份选择,传值格式为"1609430400000",单位是毫秒级时间戳;若字段类型为月份选择,传值格式为"1625068800000",单位是毫秒级时间戳;若字段类型为数字,传值格式为"1" ;
*
官网API文档链接:https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/website-delivery/create_by_resume ;
*
使用Demo链接: https://github.com/larksuite/oapi-sdk-java/tree/v2_main/sample/src/main/java/com/lark/oapi/sample/apiall/hirev1/CreateByResumeWebsiteDeliverySample.java ;
*/
public CreateByResumeWebsiteDeliveryResp createByResume(CreateByResumeWebsiteDeliveryReq req) throws Exception {
// 请求参数选项
RequestOptions reqOptions = new RequestOptions();
// 发起请求
RawResponse httpResponse = Transport.send(config, reqOptions, "POST"
, "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_resume"
, Sets.newHashSet(AccessTokenType.Tenant)
, req);
// 反序列化
CreateByResumeWebsiteDeliveryResp resp = UnmarshalRespUtil.unmarshalResp(httpResponse, CreateByResumeWebsiteDeliveryResp.class);
if (resp == null) {
log.error(String.format(
"%s,callError,req=%s,respHeader=%s,respStatusCode=%s,respBody=%s,", "/open-apis/hire/v1/websites/:website_id/deliveries/create_by_resume"
, Jsons.DEFAULT.toJson(req), Jsons.DEFAULT.toJson(httpResponse.getHeaders()),
httpResponse.getStatusCode(), new String(httpResponse.getBody(),
StandardCharsets.UTF_8)));
throw new IllegalArgumentException("The result returned by the server is illegal");
}
resp.setRawResponse(httpResponse);
resp.setRequest(req);
return resp;
}
}