Eğer gerçek uygulama ve HTTP başlıklarını görmezden istiyorsanız sadece cURL kullanmak, bir şey ile HTTP temel kimlik denetimi kullanmak istediğinizde. Burada PHP basit bir örnek, cURL de diğer dillerde mevcuttur:
<?php
$ch = curl_init();
// Sets the URL cURL will open
curl_setopt($ch, CURLOPT_URL, 'http://twitter.com/statuses/user_timeline.xml?screen_name=al3x');
// Here's the HTTP auth
// The 3rd argument is your Twitter username and password joined with a colon
curl_setopt($ch, CURLOPT_USERPWD, 'username:password');
// Makes curl_exec() return server response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Lately the Twitter API expects an Expect header. It's a mystery
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
// And here's the result XML
$twitter_xml = curl_exec($curl_handle);
curl_close($ch);
?>
Ve sonra $twitter_xml
Al3x kamu zaman çizelgesinin XML içerecektir. Bildiğim kadarıyla sınırlayıcı oranı gider gibi, ceejayoz zaten oldukça iyi olduğunu yanıtladı.