75 lines
2.3 KiB
Python
75 lines
2.3 KiB
Python
# Code generated by Lark OpenAPI.
|
|
|
|
import lark_oapi as lark
|
|
from lark_oapi.api.hire.v1 import *
|
|
|
|
|
|
def main():
|
|
# 创建client
|
|
client = lark.Client.builder() \
|
|
.app_id(lark.APP_ID) \
|
|
.app_secret(lark.APP_SECRET) \
|
|
.log_level(lark.LogLevel.DEBUG) \
|
|
.build()
|
|
|
|
# 构造请求对象
|
|
request: GetDetailApplicationRequest = GetDetailApplicationRequest.builder() \
|
|
.application_id("6956499586395523359") \
|
|
.user_id_type("open_id") \
|
|
.department_id_type("open_department_id") \
|
|
.job_level_id_type("job_level_id") \
|
|
.job_family_id_type("job_family_id") \
|
|
.employee_type_id_type("employee_type_enum_id") \
|
|
.options([]) \
|
|
.build()
|
|
|
|
# 发起请求
|
|
response: GetDetailApplicationResponse = client.hire.v1.application.get_detail(request)
|
|
|
|
# 处理失败返回
|
|
if not response.success():
|
|
lark.logger.error(
|
|
f"client.hire.v1.application.get_detail failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}")
|
|
return
|
|
|
|
# 处理业务结果
|
|
lark.logger.info(lark.JSON.marshal(response.data, indent=4))
|
|
|
|
|
|
# 异步方式
|
|
async def amain():
|
|
# 创建client
|
|
client = lark.Client.builder() \
|
|
.app_id(lark.APP_ID) \
|
|
.app_secret(lark.APP_SECRET) \
|
|
.log_level(lark.LogLevel.DEBUG) \
|
|
.build()
|
|
|
|
# 构造请求对象
|
|
request: GetDetailApplicationRequest = GetDetailApplicationRequest.builder() \
|
|
.application_id("6956499586395523359") \
|
|
.user_id_type("open_id") \
|
|
.department_id_type("open_department_id") \
|
|
.job_level_id_type("job_level_id") \
|
|
.job_family_id_type("job_family_id") \
|
|
.employee_type_id_type("employee_type_enum_id") \
|
|
.options([]) \
|
|
.build()
|
|
|
|
# 发起请求
|
|
response: GetDetailApplicationResponse = await client.hire.v1.application.aget_detail(request)
|
|
|
|
# 处理失败返回
|
|
if not response.success():
|
|
lark.logger.error(
|
|
f"client.hire.v1.application.aget_detail failed, code: {response.code}, msg: {response.msg}, log_id: {response.get_log_id()}")
|
|
return
|
|
|
|
# 处理业务结果
|
|
lark.logger.info(lark.JSON.marshal(response.data, indent=4))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# asyncio.run(amain()) 异步方式
|
|
main()
|