Full use of https!
当前接口累计调用328次 今日调用0次
随机英汉双语录 Time:2024-09-16 16:03:31
接口地址: https://api.hotaru.icu/api/ce
返回类型: application/json
请求方式: GET/POST
请求示例: https://api.hotaru.icu/api/ce?format=text
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
format | 否 | string | json 或 text,默认 json |
type | 否 | string | zhinese 或 english 或 其它,仅 text 下可用,返回纯支语/英语/合订本 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
text | string | 合订本 |
english | string | 英语 |
zhinese | string | 支语 |
返回示例:
{
"code": 500,
"message": "success",
"data": {
"text": "My hope still is to leave the world a bit better than when I got here. n我的愿望仍是,这个世界在我离开之时比我来时要好一点。",
"english": "My hope still is to leave the world a bit better than when I got here. ",
"zhinese": "我的愿望仍是,这个世界在我离开之时比我来时要好一点。"
}
}
状态码说明:
名称 | 说明 |
---|---|
无 | 无 |
调用示例:
PHP:<?php $result = file_get_contents("https://api.hotaru.icu/api/ce?format=text"); var_dump($result); ?>
JavaScript:const url = "https://api.hotaru.icu/api/ce?format=text"; fetch(url) .then(res => res.json) .(res => { console.log(res); });
Python:import requests url="https://api.hotaru.icu/api/ce?format=text" payload={} r = requests.get(url,params=payload) print(r);
lua:local httputil = HttpUtil() local url = "https://api.hotaru.icu/api/ce?format=text" local resStr local res,code = httputil.httpPost(url,str) if code ~= 200 then ngx.log(ngx.WARN,"code:"..code) return resStr end resStr = res
C/C++:#include <iostream> #include <string> #include "curl/curl.h" using namespace std; #pragma comment(lib, "ws2_32.lib") #pragma comment(lib, "wldap32.lib") #pragma comment(lib, "libcurl.lib") size_t req_reply(void *ptr, size_t size, size_t nmemb, void *stream) { cout << "----->reply" << endl; string *str = (string*)stream; cout << *str << endl; (*str).append((char*)ptr, size*nmemb); return size * nmemb; } CURLcode curl_get_req(const std::string &url, std::string &response) { CURL *curl = curl_easy_init(); CURLcode res; if (curl) { curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, req_reply); curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&response); curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1); curl_easy_setopt(curl, CURLOPT_HEADER, 1); curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3); curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3); res = curl_easy_perform(curl); } curl_easy_cleanup(curl); return res; } int main() { curl_global_init(CURL_GLOBAL_ALL); string getUrlStr = "https://api.hotaru.icu/api/ce?format=text"; string getResponseStr; auto res = curl_get_req(getUrlStr, getResponseStr); if (res != CURLE_OK) cerr << "curl_easy_perform() failed: " + string(curl_easy_strerror(res)) << endl; else cout << getResponseStr << endl; curl_global_cleanup(); system("pause"); return 0; }
Java:package com.jl.chromeTest; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLConnection; import java.nio.charset.StandardCharsets; public class Test { @org.junit.Test public void test() throws Exception{ String result = get("https://api.hotaru.icu/api/ce?format=text"); System.out.println("result====="+result); } public String get(String url) throws Exception { String content = null; URLConnection urlConnection = new URL(url).openConnection(); HttpURLConnection connection = (HttpURLConnection) urlConnection; connection.setRequestMethod("GET"); connection.connect(); int responseCode = connection.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader (connection.getInputStream(), StandardCharsets.UTF_8)); StringBuilder bs = new StringBuilder(); String l; while ((l = bufferedReader.readLine()) != null) { bs.append(l).append("\n"); } content = bs.toString(); } return content; } }
CS:HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.hotaru.icu/api/ce?format=text"); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); String result = new StreamReader(response.GetResponseStream()).ReadToEnd();
Golang:func httpGet() { resp, err := http.Get("https://api.hotaru.icu/api/ce?format=text") if err != nil { } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { } fmt.Println(string(body)) }
EPL:.版本 2 .局部变量 待返回, 文本型 待返回 = 编码_utf8到gb2312 (到文本 (网页_访问_对象 (“https://api.hotaru.icu/api/ce?format=text”)))