同步不同业务账号之间的绑定关系
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
bind_dto | BindDto | 必须 | 绑定关系对象 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result | 迁移结果 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaUccGeneralAliecoBindSyncRequest req = new AlibabaUccGeneralAliecoBindSyncRequest(); AlibabaUccGeneralAliecoBindSyncRequest.BindDto obj1 = new AlibabaUccGeneralAliecoBindSyncRequest.BindDto(); obj1.setSite( "gaode" ); obj1.setBindTimestamp(1535368793884L); obj1.setBindType(0L); obj1.setUserId( "123233" ); obj1.setBindUserId( "321233" ); obj1.setBindUserType(0L); obj1.setBindSite( "taobao" ); req.setBindDto(obj1); AlibabaUccGeneralAliecoBindSyncResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 | < alibaba_ucc_general_alieco_bind_sync_response > < result > < message >SUCCESS</ message > < code >1</ code > </ result > </ alibaba_ucc_general_alieco_bind_sync_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|