{"id":177,"date":"2009-08-28T15:34:17","date_gmt":"2009-08-28T20:34:17","guid":{"rendered":"http:\/\/abrammorphew.com\/notes\/?p=177"},"modified":"2009-08-28T16:45:55","modified_gmt":"2009-08-28T21:45:55","slug":"php-dancing-with-the-curl","status":"publish","type":"post","link":"http:\/\/abrammorphew.com\/notes\/2009\/08\/28\/php-dancing-with-the-curl\/","title":{"rendered":"PHP: Dancing with the cURL"},"content":{"rendered":"<p>HTTP Authentication with cURL in the event I&#8217;m overdrawn at the memory bank.<\/p>\n<pre class=\"brush:php\">\r\n$ch = curl_init();\r\n$url = \"http:\/\/myurl.com\/plah.php?foo=value\";\r\ncurl_setopt($ch, CURLOPT_URL, $url);\r\ncurl_setopt ($ch, CURLOPT_HEADER, 1);\r\ncurl_setopt($ch,\u00a0CURLOPT_HTTPAUTH,\u00a0CURLAUTH_ANY);\r\ncurl_setopt($ch, CURLOPT_USERPWD, \"user:pass\");\r\ncurl_exec ($ch);\r\ncurl_close ($ch);\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>HTTP Authentication with cURL in the event I&#8217;m overdrawn at the memory bank. $ch = curl_init(); $url = &#8220;http:\/\/myurl.com\/plah.php?foo=value&#8221;; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_HEADER, 1); curl_setopt($ch,\u00a0CURLOPT_HTTPAUTH,\u00a0CURLAUTH_ANY); curl_setopt($ch, CURLOPT_USERPWD, &#8220;user:pass&#8221;); curl_exec ($ch); curl_close ($ch);<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[44,29],"class_list":["post-177","post","type-post","status-publish","format-standard","hentry","category-notes","tag-curl","tag-php"],"_links":{"self":[{"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/posts\/177","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/comments?post=177"}],"version-history":[{"count":3,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/posts\/177\/revisions"}],"predecessor-version":[{"id":180,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/posts\/177\/revisions\/180"}],"wp:attachment":[{"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/media?parent=177"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/categories?post=177"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/abrammorphew.com\/notes\/wp-json\/wp\/v2\/tags?post=177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}