注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 阿里巴巴招聘系统API

alibaba.recruit.website.jobs.detail (招聘官网职位详情)

招聘官网获取职位详情

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
client_id String 可选 LazadaWebSite client identifier
lang String 可选 en 返回内容语言
position_code String 必须 GP012345 职位code

响应参数

名称 类型 示例值 描述
result Result 查询结果
  • content
  • PositionDetailDto
  • 结果内容
  • └ category_code
  • String
  • 000001
  • 职位分类code
  • category
  • PositionCategoryDto
  • 职位分类信息
  • └ code
  • String
  • 000001
  • 职位分类code
  • └ full_name
  • String
  • 技术类-开发
  • 职位分类全名
  • └ name
  • String
  • 开发
  • 职位分类名
  • └ code
  • String
  • GP00001
  • 职位编码
  • └ degree
  • String
  • 本科
  • 学历要求
  • └ department_name
  • String
  • 阿里巴巴-信息平台
  • 部门名称
  • └ description
  • String
  • 要有xx年以上开发经验
  • 职位描述
  • └ gmt_create
  • Date
  • 2018-01-01
  • 职位创建时间
  • └ gmt_modified
  • Date
  • 2018-01-01
  • 职位最后修改时间
  • └ name
  • String
  • java 开发
  • 职位名称
  • └ recruit_num
  • Number
  • 1
  • 招募人数
  • └ requirement
  • String
  • 熟悉xx开源框架
  • 岗位要求
  • └ team_description
  • String
  • 我们是做招聘的
  • 团队介绍
  • └ validity_period
  • Date
  • 2018-10-01
  • 职位有效期截止时间
  • └ work_experience
  • String
  • 1年以上
  • 工作年限要求
  • └ work_location_codes
  • String []
  • 110010
  • 工作地点code列表
  • work_locations
  • AreaDto []
  • 职位工作地点
  • └ code
  • String
  • 2018-01-01
  • 地点code
  • └ full_name
  • String
  • 中国-北京
  • 地点全名
  • └ name
  • String
  • 北京
  • 地点名
  • └ path
  • String
  • chn/110010
  • 地点路径
  • └ status
  • String
  • 招募中
  • 职位状态
  • └ error_code
  • String
  • "isv.invalid-parameter"
  • 错误码
  • └ error_msg
  • String
  • "参数错误"
  • 错误信息
  • └ success
  • Boolean
  • false
  • 接口调用是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaRecruitWebsiteJobsDetailRequest req = new AlibabaRecruitWebsiteJobsDetailRequest();
req.setClientId("LazadaWebSite");
req.setLang("en");
req.setPositionCode("GP012345");
AlibabaRecruitWebsiteJobsDetailResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_recruit_website_jobs_detail_response>
    <result>
        <content>
            <category_code>000001</category_code>
            <category>
                <code>000001</code>
                <full_name>技术类-开发</full_name>
                <name>开发</name>
            </category>
            <code>GP00001</code>
            <degree>本科</degree>
            <department_name>阿里巴巴-信息平台</department_name>
            <description>要有xx年以上开发经验</description>
            <gmt_create>2018-01-01</gmt_create>
            <gmt_modified>2018-01-01</gmt_modified>
            <name>java 开发</name>
            <recruit_num>1</recruit_num>
            <requirement>熟悉xx开源框架</requirement>
            <team_description>我们是做招聘的</team_description>
            <validity_period>2018-10-01</validity_period>
            <work_experience>1年以上</work_experience>
            <work_location_codes>
                <string>110010</string>
            </work_location_codes>
            <work_locations>
                <area_dto>
                    <code>2018-01-01</code>
                    <full_name>中国-北京</full_name>
                    <name>北京</name>
                    <path>chn/110010</path>
                </area_dto>
            </work_locations>
            <status>招募中</status>
        </content>
        <error_code>&quot;isv.invalid-parameter&quot;</error_code>
        <error_msg>&quot;参数错误&quot;</error_msg>
        <success>false</success>
    </result>
</alibaba_recruit_website_jobs_detail_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部