Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Following my last question again; This small script is supposed to grab my twitter friends feed and store the xml as a string. However, it keeps outputting all of the data (minus the xml, actually) to the browser. What am I doing wrong?

<html>
<head>
<title>Twitcap</title>
</head>
<body>
<?php
  function twitcap()
  {
    // Set your username and password
    $user = 'osoleve';
    $pass = '********';

    // Set site in handler for cURL to download
    $ch = curl_init("https://twitter.com/statuses/friends_timeline.xml");

    // Set cURL's option
    curl_setopt($ch,CURLOPT_HEADER,0); // We want to see the header
    curl_setopt($ch,CURLOPT_TIMEOUT,30); // Set timeout to 30s
    curl_setopt($ch,CURLOPT_USERPWD,$user.':'.$pass); // Set uname/pass
    curl_setopt($ch,CURLOPT_RETURNTRANSER,1); // Do not send to screen

    // For debugging purposes, comment when finished
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,1);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,1);

    // Execute the cURL command
    $xml = new SimpleXMLElement( curl_exec($ch) );
    curl_close($ch);

    // Return the data
    return $xml;
  }

  $content = twitcap();
  echo "Hello, world.<br /><br />";
?>
</body>
</html>

Oh, in case it makes a difference, I am using Chrome.

share|improve this question
1  
You're going to need to switch to OAuth soon. Basic Auth is going away on August 16, 2010. – icktoofay Aug 8 '10 at 18:25
Oh man, that sucks. Thanks for the heads up!" – Andy Aug 8 '10 at 19:46

1 Answer

up vote 9 down vote accepted

Not sure if it will help, but

curl_setopt($ch,CURLOPT_RETURNTRANSER,1);

should probably be CURLOPT_RETURNTRANS F ER

curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

share|improve this answer
HAHAHAHAHAHA. :( – Andy Aug 8 '10 at 18:27
Yeah, that seemed to do the trick. Thanks a million, that was driving me crazy. – Andy Aug 8 '10 at 18:28
1  
Strange that you didn't get a "Use of undefined constant CURLOPT_RETURNTRANSER.." message in your error display or log. – GZipp Aug 8 '10 at 18:49
+1 wow, what a good catch!!! – alfasin Aug 23 '12 at 5:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.