taobao.guangguang.content.trial.hasbind (查询用户是否绑定种草平台)

查询用户是否绑定种草平台

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
trial_base_request TrialBaseRequest 可选 请求参数
  • └ page_no
  • Number
  • 可选
  • 1
  • 页码
  • └ page_size
  • Number
  • 可选
  • 10
  • 分页大小

响应参数

名称 类型 示例值 描述
result MtopResult 返回参数
  • └ success
  • Boolean
  • true
  • 请求是否成功
  • └ model
  • Boolean
  • true
  • 是否绑定
  • └ msg_info
  • String
  • system error
  • 错误信息
  • └ msg_code
  • String
  • 500
  • 错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
GuangguangContentTrialHasbindRequest req = new GuangguangContentTrialHasbindRequest();
GuangguangContentTrialHasbindRequest.TrialBaseRequest obj1 = new GuangguangContentTrialHasbindRequest.TrialBaseRequest();
obj1.setPageNo(1L);
obj1.setPageSize(10L);
req.setTrialBaseRequest(obj1);
GuangguangContentTrialHasbindResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<guangguang_content_trial_hasbind_response>
    <result>
        <success>true</success>
        <model>true</model>
        <msg_info>system error</msg_info>
        <msg_code>500</msg_code>
    </result>
</guangguang_content_trial_hasbind_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

返回
顶部