{"id":2665,"date":"2016-05-26T01:56:50","date_gmt":"2016-05-25T16:56:50","guid":{"rendered":"http:\/\/taitan916.info\/blog\/?p=2665"},"modified":"2024-02-25T18:28:00","modified_gmt":"2024-02-25T09:28:00","slug":"post-2665","status":"publish","type":"post","link":"https:\/\/taitan916.info\/blog\/archives\/2665","title":{"rendered":"PHP\u304b\u3089\u4ed6\u30b5\u30fc\u30d0\u306eAPI\u306b\u5bfe\u3057\u3066POST\u9001\u4fe1\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p>PHP\u304b\u3089\u4ed6\u30b5\u30fc\u30d0\u306eAPI\u306b\u5bfe\u3057\u3066POST\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u304b\u3063\u305f\u3002GET\u3060\u3063\u305f\u3089Ajax\u3092\u601d\u3044\u6d6e\u304b\u3079\u308b\u3051\u3069\u3001API\u5074\u306e\u30b5\u30fc\u30d0\u3067GET\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u5236\u9650\u3055\u308c\u3066\u3044\u305f\u70ba\u3001\u305d\u306e\u624b\u6bb5\u304c\u53d6\u3089\u308c\u306a\u304b\u3063\u305f\u3002\u4ee5\u4e0b\u306bPHP\u3067POST\u30ea\u30af\u30a8\u30b9\u30c8\u3059\u308b\u65b9\u6cd5\u306e\u30e1\u30e2\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>\u30bd\u30fc\u30b9<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?php\r\n\/\/POST\u3067\u9001\u308a\u305f\u3044\u30c7\u30fc\u30bf\r\n$query = array(\r\n    'id' =&gt; 12345, \r\n    'pass' =&gt; 'sfmaKDMdfgd', \r\n    'name' =&gt; '\u540d\u524d'\r\n);\r\n\r\n\/\/URL\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30af\u30a8\u30ea\u6587\u5b57\u5217\u3092\u751f\u6210\r\n$content = http_build_query($query, '', '&amp;');\r\n\r\n\/\/\u30d8\u30c3\u30c0\u8a2d\u5b9a\r\n$header = array(\r\n    'Content-Type: application\/x-www-form-urlencoded', \/\/form\u9001\u4fe1\u306e\u969b\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304cWeb\u30b5\u30fc\u30d0\u30fc\u306b\u9001\u4fe1\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u30bf\u30a4\u30d7\r\n    'Content-Length: '.strlen($content) \/\/\u30e1\u30c3\u30bb\u30fc\u30b8\u672c\u6587\u306e\u9577\u3055\r\n);\r\n\r\n\/\/\u30b9\u30c8\u30ea\u30fc\u30e0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u8a2d\u5b9a\r\n$context = array(\r\n    'http' =&gt; array(\r\n        'ignore_errors' =&gt; true, \/\/\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9\u304c\u5931\u6557\u3092\u610f\u5473\u3059\u308b\u5834\u5408\u3067\u3082\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u53d6\u5f97\r\n        'method' =&gt; 'POST', \/\/\u30e1\u30bd\u30c3\u30c9\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u306fGET\r\n        'header' =&gt; implode(\"\\r\\n\", $header), \/\/\u30d8\u30c3\u30c0\u8a2d\u5b9a\r\n        'content' =&gt; $content \/\/\u9001\u4fe1\u3057\u305f\u3044\u30c7\u30fc\u30bf\r\n    )\r\n);\r\n$url = 'http:\/\/hoge.com\/hoge.api';\r\n$res = file_get_contents($url, false, stream_context_create($context));<\/pre>\n<p>&nbsp;<\/p>\n<h2>\u30bd\u30fc\u30b92(2020\/07\/15\u8ffd\u8a18)<\/h2>\n<p>\u539f\u56e0\u306f\u4e0d\u660e\u3060\u304c\u4e0a\u8a18\u65b9\u6cd5\u3067\u9001\u4fe1\u3067\u304d\u306a\u3044\u30b1\u30fc\u30b9\u304c\u3042\u3063\u305f\u3002\u8abf\u3079\u305f\u3068\u3053\u308d\u4ee5\u4e0b\u65b9\u6cd5\u3067\u5bfe\u5fdc\u3067\u304d\u305f\u306e\u3067\u5ff5\u306e\u305f\u3081\u30e1\u30e2\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">header('HTTP\/1.1 307 Temporary Redirect');\r\nheader('Location: http:\/\/hogehoge.com');\r\nexit();<\/pre>\n<p>POST\u30c7\u30fc\u30bf\u3092\u6240\u6301\u3057\u3066\u3044\u308b\u72b6\u614b\u3067307\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3059\u308b\u3068POST\u9001\u4fe1\u3055\u308c\u308b\u6a21\u69d8\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>\u305d\u306e\u4ed6<\/h2>\n<p>file_get_contents\u304c\u6709\u80fd\u3059\u304e\u308b\u3002\u4ed6\u306b\u3082cURL\u3092\u4f7f\u3046\u3068\u3044\u3063\u305f\u9078\u629e\u80a2\u3082\u3042\u308b\u307f\u305f\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PHP\u304b\u3089\u4ed6\u30b5\u30fc\u30d0\u306eAPI\u306b\u5bfe\u3057\u3066POST\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u304b\u3063\u305f\u3002GET\u3060\u3063\u305f\u3089 ... <\/p>\n","protected":false},"author":1,"featured_media":1085,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-2665","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php"],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/2665","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/comments?post=2665"}],"version-history":[{"count":2,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/2665\/revisions"}],"predecessor-version":[{"id":5042,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/2665\/revisions\/5042"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media\/1085"}],"wp:attachment":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media?parent=2665"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/categories?post=2665"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/tags?post=2665"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}