sdk/oapiSdk/samples/api/human_authentication/v1/create_identity_sample.py

75 lines
2.3 KiB
Python

# Code generated by Lark OpenAPI.
import lark_oapi as lark
from lark_oapi.api.human_authentication.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: CreateIdentityRequest = CreateIdentityRequest.builder() \
.user_id("ou_2eb5483cb377daa5054bc6f86e2089a5") \
.user_id_type("open_id") \
.request_body(CreateIdentityRequestBody.builder()
.identity_name("张三")
.identity_code("4xxxxxxxx")
.mobile("13xxxxxxx")
.build()) \
.build()
# 发起请求
response: CreateIdentityResponse = client.human_authentication.v1.identity.create(request)
# 处理失败返回
if not response.success():
lark.logger.error(
f"client.human_authentication.v1.identity.create 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: CreateIdentityRequest = CreateIdentityRequest.builder() \
.user_id("ou_2eb5483cb377daa5054bc6f86e2089a5") \
.user_id_type("open_id") \
.request_body(CreateIdentityRequestBody.builder()
.identity_name("张三")
.identity_code("4xxxxxxxx")
.mobile("13xxxxxxx")
.build()) \
.build()
# 发起请求
response: CreateIdentityResponse = await client.human_authentication.v1.identity.acreate(request)
# 处理失败返回
if not response.success():
lark.logger.error(
f"client.human_authentication.v1.identity.acreate 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()