请求地址: https://api-gw.onebound.cn/taobao/buyer_address_list
请求参数:
参数说明:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.onebound.cn/taobao/buyer_address_list/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&"
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://api.onebound.cn/taobao/demo/sdk2020/demo-sign.php $method = "GET"; $url = "https://api-gw.onebound.cn/taobao/buyer_address_list/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&"; $curl = curl_init(); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE); curl_setopt($curl, CURLOPT_FAILONERROR, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HEADER, true); curl_setopt($curl, CURLOPT_ENCODING, "gzip"); var_dump(curl_exec($curl)); ?>
<?php //定义缓存目录和引入文件 define("DIR_RUNTIME","runtime/"); define("DIR_ERROR","runtime/"); define("SECACHE_SIZE","0"); //SDK下载地址 http://api-gw.onebound.cn/taobao/demo/sdk2020/onebound-api-sdk.zip include ("ObApiClient.php"); $obapi = new otao\ObApiClient(); $obapi->api_url = "http://api-gw.onebound.cn/"; $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器 $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器 $obapi->api_key = "<您自己的apiKey>"; $obapi->api_secret = "<您自己的apiSecret>"; $obapi->api_version =""; $obapi->secache_path ="runtime/"; $obapi->secache_time ="86400"; $obapi->cache = true; $api_data = $obapi->exec( array( "api_type" =>"taobao", "api_name" =>"buyer_address_list", "api_params"=>array ( ) ) ); var_dump($api_data); ?>
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.net.URL; import java.nio.charset.Charset; import org.json.JSONException; import org.json.JSONObject; import java.io.PrintWriter; import java.net.URLConnection; public class Example { private static String readAll(Reader rd) throws IOException { StringBuilder sb = new StringBuilder(); int cp; while ((cp = rd.read()) != -1) { sb.append((char) cp); } return sb.toString(); } public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); conn.setDoOutput(true); conn.setDoInput(true); PrintWriter out = new PrintWriter(conn.getOutputStream()); out.print(body); out.flush(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static void main(String[] args) throws IOException, JSONException { // 请求示例 url 默认请求参数已经URL编码处理 String url = "https://api-gw.onebound.cn/taobao/buyer_address_list/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&"; JSONObject json = getRequestFromUrl(url); System.out.println(json.toString()); } }
//using System.Net.Security; //using System.Security.Cryptography.X509Certificates; private const String method = "GET"; static void Main(string[] args) { String bodys = ""; // 请求示例 url 默认请求参数已经做URL编码 String url = "https://api-gw.onebound.cn/taobao/buyer_address_list/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&"; HttpWebRequest httpRequest = null; HttpWebResponse httpResponse = null; if (url.Contains("https://")) { ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult); httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url)); } else { httpRequest = (HttpWebRequest)WebRequest.Create(url); } httpRequest.Method = method; if (0 < bodys.Length) { byte[] data = Encoding.UTF8.GetBytes(bodys); using (Stream stream = httpRequest.GetRequestStream()) { stream.Write(data, 0, data.Length); } } try { httpResponse = (HttpWebResponse)httpRequest.GetResponse(); } catch (WebException ex) { httpResponse = (HttpWebResponse)ex.Response; } Console.WriteLine(httpResponse.StatusCode); Console.WriteLine(httpResponse.Method); Console.WriteLine(httpResponse.Headers); Stream st = httpResponse.GetResponseStream(); StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8")); Console.WriteLine(reader.ReadToEnd()); Console.WriteLine("\n"); } public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors) { return true; }
# coding:utf-8 """ Compatible for python2.x and python3.x requirement: pip install requests """ from __future__ import print_function import requests # 请求示例 url 默认请求参数已经做URL编码 url = "https://api-gw.onebound.cn/taobao/buyer_address_list/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&" headers = { "Accept-Encoding": "gzip", "Connection": "close" } if __name__ == "__main__": r = requests.get(url, headers=headers) json_obj = r.json() print(json_obj)
{ "data": [ { "active": false, "addressDetail": "人民路313号(秦皇食府对面)万邦科技有限公司", "area": "渝水区", "areaDivisionCode": 360502, "buidFromChindIframe": true, "chinaLand": true, "city": "新余市", "cityDivisionCode": 360500, "confidence": 93, "country": "", "countryDivisionCode": 1, "defaultAddress": true, "defaultCode": 1, "deliverId": 6845502554, "divisionCode": "360502", "fillPoiAddress": false, "forgin": false, "fullAddress": "江西省/新余市/渝水区/城南街道", "fullName": "张三", "gAT": false, "gmtCreate": 1480486142000, "gmtModified": 1495477303000, "guoguoAddress": false, "hKOrMacauOrTW": false, "helpBuyAddress": false, "illegalCunTaoAddress": false, "isPoiAddress": false, "kinshipDeliverAddress": false, "lastChoose": false, "locationEnable": false, "mobile": "13979008888", "mobileCode": "86", "needToUpgrade": false, "needUpgrade": false, "overSea": false, "phone": "0790-6666666", "phoneCode": "6666666", "phoneInternationalCode": "86", "phoneSection": "0790", "post": "338000", "provDivisionCode": 360000, "province": "江西省", "tAIWAN": false, "town": "城南街道", "townDivisionCode": 360502001, "userNumId": 2601011849, "x": "27.806949", "y": "114.944236" }, { "active": false, "addressDetail": "康泰路62号 玫瑰小区6期", "area": "渝水区", "areaDivisionCode": 360502, "buidFromChindIframe": true, "chinaLand": true, "city": "新余市", "cityDivisionCode": 360500, "confidence": 98, "country": "", "countryDivisionCode": 1, "defaultAddress": false, "defaultCode": 0, "deliverId": 6375759746, "divisionCode": "360502", "fillPoiAddress": false, "forgin": false, "fullAddress": "江西省/新余市/渝水区/城南街道", "fullName": "李四", "gAT": false, "gmtCreate": 1465220621000, "gmtModified": 1495681978000, "guoguoAddress": false, "hKOrMacauOrTW": false, "helpBuyAddress": false, "illegalCunTaoAddress": false, "isPoiAddress": false, "kinshipDeliverAddress": false, "lastChoose": false, "locationEnable": false, "mobile": "13979008888", "mobileCode": "86", "needToUpgrade": false, "needUpgrade": false, "overSea": false, "post": "338000", "provDivisionCode": 360000, "province": "江西省", "tAIWAN": false, "town": "城南街道", "townDivisionCode": 360502001, "userNumId": 2601011849, "x": "27.79764", "y": "114.950212" } ], "from": "taobao", "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:7 max:10000", "execution_time": 0.704, "server_time": "Beijing/2021-03-16 10:47:24", "client_ip": "127.0.0.1", "call_args": [], "api_type": "taobao", "translate_language": "zh-CN", "translate_engine": "google_cn", "server_memory": "5.5MB", "request_id": "0.60501c3b778b7" }