文档中心 > API类目 > 国际站API

alibaba.member.basicprofile.find (会员基础信息)

获取会员基本信息,如:firstName、lastName、job_title等

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述

响应参数

名称 类型 示例值 描述
first_name String John first name
last_name String Smith last name
gender String Male gender
job_title String architecture job titile
contact_address String 1234 Main St New York, NY 10044, USA contact address
department String production department department

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaMemberBasicprofileFindRequest req = new AlibabaMemberBasicprofileFindRequest();
AlibabaMemberBasicprofileFindResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_member_basicprofile_find_response>
    <first_name>John</first_name>
    <last_name>Smith</last_name>
    <gender>Male</gender>
    <job_title>architecture</job_title>
    <contact_address>1234 Main St New York, NY 10044, USA</contact_address>
    <department>production department</department>
</alibaba_member_basicprofile_find_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>

错误码解释

错误码 错误描述 解决方案
isp.100002 没有找到alibaba相关会员信息 请确认是否是alibaba会员
isp.100003 没有找到该会员所属行业 请在BP首页更新您的industry,BP首页: http://profile.alibaba.com/

API工具

如何获得此API

FAQ

返回
顶部