{"id":131978,"date":"2024-03-25T21:24:17","date_gmt":"2024-03-25T12:24:17","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/"},"modified":"2024-04-04T13:00:54","modified_gmt":"2024-04-04T04:00:54","slug":"httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/","title":{"rendered":"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac"},"content":{"rendered":"<p>HttpClient\u306f\u3001HTTP\u901a\u4fe1\u3092\u884c\u3046\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eHTTP\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30c4\u30fc\u30eb\u30ad\u30c3\u30c8\u3067\u3059\u3002 HTTP\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u9001\u4fe1\u3084HTTP\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u53d7\u4fe1\u306b\u4f7f\u7528\u3067\u304d\u3001HTTP\/1.1\u304a\u3088\u3073HTTP\/2\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3001\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3001\u30d7\u30ed\u30ad\u30b7\u3001\u8a8d\u8a3c\u3001Cookie\u7ba1\u7406\u306a\u3069\u306e\u591a\u304f\u306e\u9ad8\u5ea6\u306a\u6a5f\u80fd\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002<\/p>\n<p>HttpClient\u3092\u4f7f\u7528\u3059\u308b\u306b\u306f\u3001\u95a2\u9023\u3059\u308bjar\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u306ejar\u30d1\u30c3\u30b1\u30fc\u30b8\u306fHttpClient\u306e\u516c\u5f0f\u30b5\u30a4\u30c8\uff08https:\/\/hc.apache.org\/httpcomponents-client-ga\/\uff09\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u304b\u3001Maven\u3092\u4f7f\u7528\u3057\u3066\u4f9d\u5b58\u95a2\u4fc2\u3092\u7ba1\u7406\u3057\u3066\u3001pom.xml\u30d5\u30a1\u30a4\u30eb\u306b\u6b21\u306e\u4f9d\u5b58\u95a2\u4fc2\u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code>&lt;dependency&gt;\r\n&lt;groupId&gt;org.apache.httpcomponents&lt;\/groupId&gt;\r\n&lt;artifactId&gt;httpclient&lt;\/artifactId&gt;\r\n&lt;version&gt;4.5.13&lt;\/version&gt;\r\n&lt;\/dependency&gt;\r\n<\/code><\/pre>\n<p>HttpClient\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3089\u3001\u63d0\u4f9b\u3055\u308c\u308b\u6a5f\u80fd\u3092\u5229\u7528\u3067\u304d\u307e\u3059\u3002\u4ee5\u4e0b\u306bHttpClient\u3067GET\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u4f8b\u3092\u793a\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.apache.http.HttpResponse;\r\n<span class=\"hljs-keyword\">import<\/span> org.apache.http.client.HttpClient;\r\n<span class=\"hljs-keyword\">import<\/span> org.apache.http.client.methods.HttpGet;\r\n<span class=\"hljs-keyword\">import<\/span> org.apache.http.impl.client.HttpClientBuilder;\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">HttpClientExample<\/span> {\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">static<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title function_\">main<\/span><span class=\"hljs-params\">(String[] args)<\/span> <span class=\"hljs-keyword\">throws<\/span> Exception {\r\n<span class=\"hljs-type\">String<\/span> <span class=\"hljs-variable\">url<\/span> <span class=\"hljs-operator\">=<\/span> <span class=\"hljs-string\">\"https:\/\/www.example.com\"<\/span>;\r\n<span class=\"hljs-type\">HttpClient<\/span> <span class=\"hljs-variable\">httpClient<\/span> <span class=\"hljs-operator\">=<\/span> HttpClientBuilder.create().build();\r\n<span class=\"hljs-type\">HttpGet<\/span> <span class=\"hljs-variable\">httpGet<\/span> <span class=\"hljs-operator\">=<\/span> <span class=\"hljs-keyword\">new<\/span> <span class=\"hljs-title class_\">HttpGet<\/span>(url);\r\n<span class=\"hljs-type\">HttpResponse<\/span> <span class=\"hljs-variable\">response<\/span> <span class=\"hljs-operator\">=<\/span> httpClient.execute(httpGet);\r\n<span class=\"hljs-type\">int<\/span> <span class=\"hljs-variable\">statusCode<\/span> <span class=\"hljs-operator\">=<\/span> response.getStatusLine().getStatusCode();\r\nSystem.out.println(<span class=\"hljs-string\">\"Response Code : \"<\/span> + statusCode);\r\n<span class=\"hljs-comment\">\/\/ \u5904\u7406\u54cd\u5e94\u5185\u5bb9<\/span>\r\n<span class=\"hljs-comment\">\/\/ ...<\/span>\r\nhttpClient.getConnectionManager().shutdown();\r\n}\r\n}\r\n<\/code><\/pre>\n<p>\u307e\u305a\u3001HttpClient\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3001\u6b21\u306bHttpGet\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u3066\u3001\u30ea\u30af\u30a8\u30b9\u30c8\u306eURL\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\u305d\u306e\u5f8c\u3001HttpClient\u306eexecute\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3057\u3001\u5fdc\u7b54\u3092\u53d6\u5f97\u3057\u307e\u3059\u3002\u6700\u5f8c\u306b\u3001response\u306egetEntity\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u5fdc\u7b54\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u53d6\u5f97\u3057\u3001\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u51e6\u7406\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>GET\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u4ed6\u306b\u3001HttpClient\u3067\u306fPOST\u30ea\u30af\u30a8\u30b9\u30c8\u3001PUT\u30ea\u30af\u30a8\u30b9\u30c8\u3001DELETE\u30ea\u30af\u30a8\u30b9\u30c8\u306a\u3069\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u7570\u306a\u308b\u30bf\u30a4\u30d7\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u7570\u306a\u308b\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002\u5177\u4f53\u7684\u306a\u4f7f\u7528\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u3001HttpClient\u306e\u516c\u5f0f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u95a2\u9023\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n<p>\u307e\u305f\u3001HttpClient\u306f4.3\u4ee5\u964d\u3001\u5927\u5e45\u306a\u6539\u5584\u304c\u898b\u3089\u308c\u3001HttpClient \u306e\u4e2d\u6838\u6a5f\u80fd\u3092 HttpClient \u3068 HttpClientBuilder \u306e2\u3064\u306e\u30af\u30e9\u30b9\u306b\u5206\u96e2\u3001HttpClient\u306f\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u9001\u4fe1\u3068\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u53d7\u4fe1\u3001HttpClientBuilder\u306fHttpClient\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u3068\u8a2d\u5b9a\u3092\u62c5\u5f53\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u305d\u306e\u305f\u3081\u3001HttpClient\u3092\u5229\u7528\u3059\u308b\u969b\u306b\u306f\u3001HttpClientBuilder \u3092\u4f7f\u7528\u3057\u3066HttpClient\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u3092\u63a8\u5968\u3057\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>HttpClient\u306f\u3001HTTP\u901a\u4fe1\u3092\u884c\u3046\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eHTTP\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30c4\u30fc\u30eb\u30ad\u30c3\u30c8\u3067\u3059\u3002 HTTP\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u9001\u4fe1\u3084HTTP\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u53d7\u4fe1\u306b\u4f7f\u7528\u3067\u304d\u3001HTTP\/1.1\u304a\u3088\u3073HTTP\/2\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3001\u30ea [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-131978","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\" \/>\n<meta property=\"og:description\" content=\"HttpClient\u306f\u3001HTTP\u901a\u4fe1\u3092\u884c\u3046\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eHTTP\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30c4\u30fc\u30eb\u30ad\u30c3\u30c8\u3067\u3059\u3002 HTTP\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u9001\u4fe1\u3084HTTP\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u53d7\u4fe1\u306b\u4f7f\u7528\u3067\u304d\u3001HTTP\/1.1\u304a\u3088\u3073HTTP\/2\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3001\u30ea [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-25T12:24:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-04T04:00:54+00:00\" \/>\n<meta name=\"author\" content=\"\u685c, \u6625\u6a39\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u685c, \u6625\u6a39\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/\",\"name\":\"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-25T12:24:17+00:00\",\"dateModified\":\"2024-04-04T04:00:54+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/ff22288af1a5455571aff7586b0fb341\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/ff22288af1a5455571aff7586b0fb341\",\"name\":\"\u685c, \u6625\u6a39\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cee48863f3d4fd7fef222498f3e71b82312aee42b7257a2dbde56394ca4e19de?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cee48863f3d4fd7fef222498f3e71b82312aee42b7257a2dbde56394ca4e19de?s=96&d=mm&r=g\",\"caption\":\"\u685c, \u6625\u6a39\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/sakuraharuki\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\/","og_locale":"ja_JP","og_type":"article","og_title":"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac","og_description":"HttpClient\u306f\u3001HTTP\u901a\u4fe1\u3092\u884c\u3046\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306eHTTP\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30c4\u30fc\u30eb\u30ad\u30c3\u30c8\u3067\u3059\u3002 HTTP\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u9001\u4fe1\u3084HTTP\u30ec\u30b9\u30dd\u30f3\u30b9\u306e\u53d7\u4fe1\u306b\u4f7f\u7528\u3067\u304d\u3001HTTP\/1.1\u304a\u3088\u3073HTTP\/2\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3001\u30ea [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-25T12:24:17+00:00","article_modified_time":"2024-04-04T04:00:54+00:00","author":"\u685c, \u6625\u6a39","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u685c, \u6625\u6a39","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/","name":"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-25T12:24:17+00:00","dateModified":"2024-04-04T04:00:54+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/ff22288af1a5455571aff7586b0fb341"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"HttpClient jar\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f7f\u7528\u306b\u95a2\u3059\u308b\u8a73\u3057\u3044\u89e3\u8aac"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/ff22288af1a5455571aff7586b0fb341","name":"\u685c, \u6625\u6a39","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cee48863f3d4fd7fef222498f3e71b82312aee42b7257a2dbde56394ca4e19de?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cee48863f3d4fd7fef222498f3e71b82312aee42b7257a2dbde56394ca4e19de?s=96&d=mm&r=g","caption":"\u685c, \u6625\u6a39"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/sakuraharuki\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/httpclient-jar%e3%83%91%e3%83%83%e3%82%b1%e3%83%bc%e3%82%b8%e3%81%ae%e4%bd%bf%e7%94%a8%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%a9%b3%e3%81%97%e3%81%84%e8%a7%a3%e8%aa%ac\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131978","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=131978"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131978\/revisions"}],"predecessor-version":[{"id":275795,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131978\/revisions\/275795"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=131978"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=131978"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=131978"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}