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

alibaba.buyer.companyprofile.find (买家公司基础信息)

获取当前买家公司基础信息,如:industry、companyName

公共参数

请求参数

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

响应参数

名称 类型 示例值 描述
industry String Internet industry
company_name String ABC Corporation company name
member_profile_page String http://example.com profile page

请求示例

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

响应示例

  • XML示例
  • JSON示例
<alibaba_buyer_companyprofile_find_response>
    <industry>Internet</industry>
    <company_name>ABC Corporation</company_name>
    <member_profile_page>http://example.com</member_profile_page>
</alibaba_buyer_companyprofile_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

返回
顶部