<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    >

<channel>
    <title>Webmonkey &#187; wiki PHP APIs</title>
    <atom:link href="http://www.webmonkey.com/tag/wiki-php-apis/feed/" rel="self" type="application/rss+xml" />
    <link>http://www.webmonkey.com</link>
    <description>The Web Developer&#039;s Resource</description>
    <lastBuildDate>Mon, 06 May 2013 17:29:19 +0000</lastBuildDate>
    <language>en-US</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <generator>http://wordpress.org/?v=3.4.2</generator>
    
    <item>
        <title>Delicious API</title>
        <link>http://www.webmonkey.com/2010/02/delicious_api/</link>
        <comments>http://www.webmonkey.com/2010/02/delicious_api/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=441</guid>
        		<category><![CDATA[APIs]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wiki PHP APIs]]></category>
        <description><![CDATA[This PHP code will retrieve your thirty most recent posts from the bookmark sharing service del.icio.us. Replace your username and password where applicable to get your own result. &#60;? $dusername = "XXXXXXXXXXXXX"; $dpassword = "XXXXXXXXXXXXX"; $api = "api.del.icio.us/v1"; $apicall = "https://$dusername:$dpassword@$api/posts/recent?&#38;count=30"; function del_connect($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_USERAGENT, 'mycoolname'); [...]]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p>This PHP code will retrieve your thirty most recent posts from the bookmark sharing service del.icio.us. Replace your username and password where applicable to get your own result.

</p><p><br />
<span id="more-441"></span>
</p>

<pre class="brush: php">&lt;?

$dusername = "XXXXXXXXXXXXX";

$dpassword = "XXXXXXXXXXXXX";

$api = "api.del.icio.us/v1";

$apicall = "https://$dusername:$dpassword@$api/posts/recent?&amp;count=30";

function del_connect($url) {

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL,$url);

    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);

    curl_setopt($ch, CURLOPT_USERAGENT, 'mycoolname');

    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

    $xml = curl_exec ($ch);

    curl_close ($ch);

    return $xml;

}

$result = del_connect($apicall);

echo $result;

?&gt;

</pre><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/delicious_api/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    </channel>
</rss>
