接口调用代码示例
接口调用方式, 可参考如下代码, 暂时只支持 Python 和 Java 语言
Python
调用代码示例
from urllib import request
import json
if __name__ == "__main__":
data = {
"usermail": "test@credithc.com",
"appkey": "testkey"
}
url = "https://authtest.hengchanglt.com/api/v1/checkmail"
data = bytes(json.dumps(data), encoding='utf-8')
req = request.Request(url=url, data=data, method="POST")
try:
res = request.urlopen(req)
print(json.loads(str(res.read(), encoding='utf-8')))
except Exception as e:
print(e)
Java
调用代码示例1
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.HttpStatusCodeException;
import org.springframework.web.client.RestTemplate;
import com.alibaba.fastjson.JSONObject;
public class test2 {
public static void main(String[] args) {
String usermail = "test@credithc.com";
String appkey = "testkey";
String getTokenUrl = "https://authtest.hengchanglt.com/api/v1/checkmail";
JSONObject param = new JSONObject();
param.put("appkey", appkey);
param.put("usermail", usermail);
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.set("Content-Type", MediaType.APPLICATION_FORM_URLENCODED_VALUE);
headers.set("Accept", MediaType.APPLICATION_FORM_URLENCODED_VALUE);
try {
ResponseEntity<String> exchange = restTemplate.exchange(getTokenUrl, HttpMethod.POST,
new HttpEntity<>(param.toString(), headers), String.class);
System.out.println(exchange);
}catch (HttpStatusCodeException e){
e.printStackTrace();
System.out.println(e.getResponseBodyAsString());
}
}
}
调用代码示例2
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;;
public class test {
public static void main(String[] args) throws ClientProtocolException, IOException {
CloseableHttpClient client = HttpClients.createDefault();
CloseableHttpResponse reponse = null;
HttpPost post = new HttpPost("https://authtest.hengchanglt.com/api/v1/checkmail");
String data = "{\"appkey\": \"testkey\", \"usermail\": \"test@credithc.com\"}";
StringEntity test = new StringEntity(data, ContentType.APPLICATION_FORM_URLENCODED);
post.setEntity(test);
reponse = client.execute(post);
BufferedReader reader = new BufferedReader(new InputStreamReader(reponse.getEntity().getContent()));
String line;
while((line = reader.readLine()) !=null) {
System.out.println(line);
}
}
}
Golang
调用代码示例
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
)
const URL = "https://authtest.hengchanglt.com/api/v1/checkmail"
type SearchResult struct {
Code int `json:"code"`
Is_Exit string `json:"is_exit"`
Data string `json:"data"`
ErrMsg string `json:"errmsg"`
}
func DoPost(url string, mail string, appkey string) (res SearchResult) {
var result SearchResult
data := map[string]string{
"usermail":mail,
"appkey":appkey,
}
b,err := json.Marshal(data)
if err != nil{
fmt.Printf("参数编码错误:%s",err)
return result
}
r,err := http.Post(url,"application/x-www-form-urlencoded",bytes.NewBuffer(b))
if err != nil {
return result
}
defer r.Body.Close()
body, _ := ioutil.ReadAll(r.Body)
if r.StatusCode > 200{
fmt.Printf("请求失败:%d\n",r.StatusCode)
return result
}
json.Unmarshal([]byte(string(body)), &result)
return result
}
func main() {
res := DoPost(URL,"test@credithc.com","testkey")
fmt.Printf("%s,%s,%s,%d\n",res.Data,,res.ErrMsg,res.Is_Exit,res.Code)
}