My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 05, 2009
    issue 17 (Use of intval breaking some features) reported by langdon   -   What steps will reproduce the problem? 1. call the search method on Arc90_Service_Twitter_Search class 2. pass since_id with a recent twitter id (now quite large) 3. since_id gets set to 2147483647 (integer limit) Simply resetting the value to the result of intval() isn't a great way of validation.
    What steps will reproduce the problem? 1. call the search method on Arc90_Service_Twitter_Search class 2. pass since_id with a recent twitter id (now quite large) 3. since_id gets set to 2147483647 (integer limit) Simply resetting the value to the result of intval() isn't a great way of validation.
  • Dec 01, 2009
    issue 16 (Retweets not listed when using the getPublicTimeline functio...) reported by tvervest   -   When calling the API using the getPublicTimeline function no retweets are listed. This is as per expected behavior, however there is no function that actually does list these. I have added a diff file which contains the information for a new function called getHomeTimeline, which implements this behaviour as per the /statuses/home_timeline directory in the twitter API.
    When calling the API using the getPublicTimeline function no retweets are listed. This is as per expected behavior, however there is no function that actually does list these. I have added a diff file which contains the information for a new function called getHomeTimeline, which implements this behaviour as per the /statuses/home_timeline directory in the twitter API.

Earlier this year

  • Nov 05, 2009
    issue 15 (SSL connection timeout) commented on by nicklevett   -   I don't know if CURLOPT_FRESH_CONNECT will help - helps IIS with cached connections. ATM CURLOPT_CONNECTTIMEOUT is being used with TRUE which should be the number of seconds to wait.
    I don't know if CURLOPT_FRESH_CONNECT will help - helps IIS with cached connections. ATM CURLOPT_CONNECTTIMEOUT is being used with TRUE which should be the number of seconds to wait.
  • Nov 05, 2009
    issue 15 (SSL connection timeout) reported by nicklevett   -   What steps will reproduce the problem? 1. Make a script which calls methods in the library multiple times - I call showUser, getFriendsTimeline and getMentions. 2. On the odd occasion one of the requests will fail - most likely showUser but the next two run fine. 3. What is the expected output? What do you see instead? The response from Twitter but you get a blank response due to a SSL connection timeout in cURL. What version of the product are you using? On what operating system? 2.2.3 on Windows Server 2003 using PHP 5.2.11. Please provide any additional information below. I do cache the JSON responses in a file which I check and update after a while. It might be an idea to put a loop in _sendRequest with a limit to send the request multiple times until there's a response. Using curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE); might help? Some extra protection: if($data == '') { self::_throwException("Error communicating with Twitter: " . curl_error($ch)); curl_close($ch); }
    What steps will reproduce the problem? 1. Make a script which calls methods in the library multiple times - I call showUser, getFriendsTimeline and getMentions. 2. On the odd occasion one of the requests will fail - most likely showUser but the next two run fine. 3. What is the expected output? What do you see instead? The response from Twitter but you get a blank response due to a SSL connection timeout in cURL. What version of the product are you using? On what operating system? 2.2.3 on Windows Server 2003 using PHP 5.2.11. Please provide any additional information below. I do cache the JSON responses in a file which I check and update after a while. It might be an idea to put a loop in _sendRequest with a limit to send the request multiple times until there's a response. Using curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE); might help? Some extra protection: if($data == '') { self::_throwException("Error communicating with Twitter: " . curl_error($ch)); curl_close($ch); }
  • Nov 04, 2009
    issue 14 (Is there support for updating profiles using OAuth tokens an...) reported by zarars   -   Hoping that instead of creating the Arc90_Service_Twitter object like so: Arc90_Service_Twitter($username, $password); I could do it like so: Arc90_Service_Twitter($auth_token, $auth_token_secret); where $auth_token and $auth_token_secret are provided to my app by Twitter through after successful OAuth authentication.
    Hoping that instead of creating the Arc90_Service_Twitter object like so: Arc90_Service_Twitter($username, $password); I could do it like so: Arc90_Service_Twitter($auth_token, $auth_token_secret); where $auth_token and $auth_token_secret are provided to my app by Twitter through after successful OAuth authentication.
  • Oct 15, 2009
    issue 12 (Request will silently fail using SSL) commented on by nicklevett   -   Thanks for adding the new method. The only way I can get it to work is by using setSSL(TRUE, FALSE, TRUE), otherwise you get from curl_error: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed I believe this is a curl problem but thought you should know as by default it won't work.
    Thanks for adding the new method. The only way I can get it to work is by using setSSL(TRUE, FALSE, TRUE), otherwise you get from curl_error: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed I believe this is a curl problem but thought you should know as by default it won't work.
  • Sep 08, 2009
    issue 13 (Unable to update profile image (with fix)) Status changed by mattwilliamsnyc   -   Thanks. Updated in 2.2.3.
    Status: Fixed
    Thanks. Updated in 2.2.3.
    Status: Fixed
  • Sep 08, 2009
    issue 12 (Request will silently fail using SSL) Status changed by mattwilliamsnyc   -   Updated in 2.2.3. I added peer and host verification options to setSSL(). These get passed in to curl in _sendRequest(). Please let me know if you have any more problems with this. Thanks again.
    Status: Fixed
    Updated in 2.2.3. I added peer and host verification options to setSSL(). These get passed in to curl in _sendRequest(). Please let me know if you have any more problems with this. Thanks again.
    Status: Fixed
  • Sep 08, 2009
    issue 10 (_validatePositiveInteger) Status changed by mattwilliamsnyc   -   Updated in 2.2.3
    Status: Verified
    Updated in 2.2.3
    Status: Verified
  • Sep 08, 2009
    issue 8 (verifyCredentials() send a request without Auth) Status changed by mattwilliamsnyc   -   Updated in 2.2.3
    Status: Verified
    Updated in 2.2.3
    Status: Verified
  • Sep 08, 2009
    issue 6 (Source parameter deprecated for non-OAuth apps) Status changed by mattwilliamsnyc   -   Updated in 2.2.3
    Status: Verified
    Updated in 2.2.3
    Status: Verified
  • Sep 08, 2009
    issue 5 (Auth parameter for functions that don't require authenticati...) Status changed by mattwilliamsnyc   -   Updated in 2.2.3
    Status: Verified
    Updated in 2.2.3
    Status: Verified
  • Sep 08, 2009
    Arc90_Service_Twitter-2.2.3.tar.bz2 (2.2.3 release (tar/bzip2 archive) - Fixes several minor issu...) file uploaded by mattwilliamsnyc   -  
    Labels: Type-Archive OpSys-All Featured
    Labels: Type-Archive OpSys-All Featured
  • Sep 08, 2009
    Arc90_Service_Twitter-2.2.3.zip (2.2.3 release (zip archive) - Fixes several minor issues. Se...) file uploaded by mattwilliamsnyc   -  
    Labels: Type-Archive OpSys-All Featured
    Labels: Type-Archive OpSys-All Featured
  • Sep 08, 2009
    r75 (Creating release tag 2.2.3 ) committed by mattwilliamsnyc   -   Creating release tag 2.2.3
    Creating release tag 2.2.3
  • Sep 08, 2009
    r74 (Updated CHANGELOG) committed by mattwilliamsnyc   -   Updated CHANGELOG
    Updated CHANGELOG
  • Sep 08, 2009
    r73 (Fixed integer validation to cast values to strings before us...) committed by mattwilliamsnyc   -   Fixed integer validation to cast values to strings before using ctype_
    Fixed integer validation to cast values to strings before using ctype_
  • Sep 08, 2009
    r72 (Updated updateProfileImage function to match updateProfileBa...) committed by mattwilliamsnyc   -   Updated updateProfileImage function to match updateProfileBackgroundImage (@{} vs. file_get_contents()). Addresses issues #7 and #13.
    Updated updateProfileImage function to match updateProfileBackgroundImage (@{} vs. file_get_contents()). Addresses issues #7 and #13.
  • Sep 08, 2009
    r71 (Added SSL verification options used in _sendRequest(). Addre...) committed by mattwilliamsnyc   -   Added SSL verification options used in _sendRequest(). Addresses Issue #12 . Also added mb_strlen support.
    Added SSL verification options used in _sendRequest(). Addresses Issue #12 . Also added mb_strlen support.
  • Sep 08, 2009
    r70 (Updated _validatePositiveInteger() to account for Twitter ID...) committed by mattwilliamsnyc   -   Updated _validatePositiveInteger() to account for Twitter IDs greater than 32-bit int limit. Fixes Issue #10 .
    Updated _validatePositiveInteger() to account for Twitter IDs greater than 32-bit int limit. Fixes Issue #10 .
  • Sep 08, 2009
    r69 (Adding authentication to verifyCredentials(). Closes issue #...) committed by mattwilliamsnyc   -   Adding authentication to verifyCredentials(). Closes issue #8
    Adding authentication to verifyCredentials(). Closes issue #8
  • Sep 08, 2009
    issue 13 (Unable to update profile image (with fix)) commented on by mattwilliamsnyc   -   Issue 7 has been merged into this issue.
    Issue 7 has been merged into this issue.
  • Sep 08, 2009
    issue 7 (profile and background images not uploaded) changed by mattwilliamsnyc   -   This will be fixed shortly and will be closed with issue #13 (duplicate bug)
    Status: Duplicate
    This will be fixed shortly and will be closed with issue #13 (duplicate bug)
    Status: Duplicate
  • Sep 08, 2009
    issue 11 (Empty response when calling updateStatus) changed by mattwilliamsnyc   -   My guess would be that the request is timing out. This could happen if Twitter is down or under heavy load. You could try increasing the timeout length using the setTimeout() function and/or sleeping for a couple seconds and retrying the request if you get an empty response. I'm marking this ticket as invalid just because I don't think it's something that can be fixed in the library code. Let me know if you still have issues and I'll be glad to try to help. Thanks. - Matt
    Status: Invalid
    Owner: mattwilliamsnyc
    My guess would be that the request is timing out. This could happen if Twitter is down or under heavy load. You could try increasing the timeout length using the setTimeout() function and/or sleeping for a couple seconds and retrying the request if you get an empty response. I'm marking this ticket as invalid just because I don't think it's something that can be fixed in the library code. Let me know if you still have issues and I'll be glad to try to help. Thanks. - Matt
    Status: Invalid
    Owner: mattwilliamsnyc
  • Sep 08, 2009
    issue 12 (Request will silently fail using SSL) changed by mattwilliamsnyc   -   Thanks Nick. I'll make an update later this week. - Matt
    Status: Accepted
    Owner: mattwilliamsnyc
    Thanks Nick. I'll make an update later this week. - Matt
    Status: Accepted
    Owner: mattwilliamsnyc
  • Sep 08, 2009
    issue 13 (Unable to update profile image (with fix)) changed by mattwilliamsnyc   -   Thanks for the bug report. I'll get this fixed along with a couple of other small patches this week. - Matt
    Status: Accepted
    Owner: mattwilliamsnyc
    Thanks for the bug report. I'll get this fixed along with a couple of other small patches this week. - Matt
    Status: Accepted
    Owner: mattwilliamsnyc
  • Sep 06, 2009
    issue 13 (Unable to update profile image (with fix)) reported by itsrool   -   What steps will reproduce the problem? 1. call $twitter->updateProfileImage() with an appropriate image What is the expected output? What do you see instead? The expected output: Changed profile image The recieved output: Invalid Unicode value in parameter image What version of the product are you using? On what operating system? Version 2.2.2 (on Ubuntu 9.04 ) Please provide any additional information below. If you change line 1152 $data = array('image' => file_get_contents($image)); with line 1179 $data = array('image' => "@{$image}"); in Arc90_Service_Twitter\lib\Arc90\Service\Twitter.php things work as expected.
    What steps will reproduce the problem? 1. call $twitter->updateProfileImage() with an appropriate image What is the expected output? What do you see instead? The expected output: Changed profile image The recieved output: Invalid Unicode value in parameter image What version of the product are you using? On what operating system? Version 2.2.2 (on Ubuntu 9.04 ) Please provide any additional information below. If you change line 1152 $data = array('image' => file_get_contents($image)); with line 1179 $data = array('image' => "@{$image}"); in Arc90_Service_Twitter\lib\Arc90\Service\Twitter.php things work as expected.
  • Sep 04, 2009
    issue 12 (Request will silently fail using SSL) commented on by nicklevett   -   Sorry that should be 2.2.2 not 2.0.2
    Sorry that should be 2.2.2 not 2.0.2
  • Sep 04, 2009
    issue 12 (Request will silently fail using SSL) reported by nicklevett   -   What steps will reproduce the problem? 1. Make a request using SSL 2. The response will be empty 3. Using curl_errno will return code 60 What is the expected output? What do you see instead? You should see the returned data What version of the product are you using? On what operating system? 2.0.2 on Windows Server 2003 with PHP 5.2.9-2 Please provide any additional information below. The function _sendRequest in Twitter.php needs expanding to set CURLOPT_SSL_VERIFYHOST and/or CURLOPT_SSL_VERIFYPEER and add error handling for the request.
    What steps will reproduce the problem? 1. Make a request using SSL 2. The response will be empty 3. Using curl_errno will return code 60 What is the expected output? What do you see instead? You should see the returned data What version of the product are you using? On what operating system? 2.0.2 on Windows Server 2003 with PHP 5.2.9-2 Please provide any additional information below. The function _sendRequest in Twitter.php needs expanding to set CURLOPT_SSL_VERIFYHOST and/or CURLOPT_SSL_VERIFYPEER and add error handling for the request.
  • Aug 12, 2009
    Arc90_Service_Twitter (Basic project description.) Wiki page commented on by indianelement14   -   sgs
    sgs
  • Aug 09, 2009
    issue 11 (Empty response when calling updateStatus) reported by zarars   -   I often get empty responses for no reason when calling updateStatus. Here's an output of var_dump on the response received. There is no diagnostic information returned and it's as if though it never even made the call. I have this running in a cron task and sometimes it works, sometimes it doesn't. Any ideas what I need to tweak? object(Arc90_Service_Twitter_Response)#334 (2) { ["_metadata:protected"]=> array(19) { ["url"]=> string(39) "http://twitter.com/statuses/update.json" ["http_code"]=> int(0) ["header_size"]=> int(0) ["request_size"]=> int(0) ["filetime"]=> int(-1) ["ssl_verify_result"]=> int(0) ["redirect_count"]=> int(0) ["total_time"]=> float(0) ["namelookup_time"]=> float(0.001483) ["connect_time"]=> float(0) ["pretransfer_time"]=> float(0) ["size_upload"]=> float(0) ["size_download"]=> float(0) ["speed_download"]=> float(0) ["speed_upload"]=> float(0) ["download_content_length"]=> float(0) ["upload_content_length"]=> float(0) ["starttransfer_time"]=> float(0) ["redirect_time"]=> float(0) } ["_data:protected"]=> bool(false) }
    I often get empty responses for no reason when calling updateStatus. Here's an output of var_dump on the response received. There is no diagnostic information returned and it's as if though it never even made the call. I have this running in a cron task and sometimes it works, sometimes it doesn't. Any ideas what I need to tweak? object(Arc90_Service_Twitter_Response)#334 (2) { ["_metadata:protected"]=> array(19) { ["url"]=> string(39) "http://twitter.com/statuses/update.json" ["http_code"]=> int(0) ["header_size"]=> int(0) ["request_size"]=> int(0) ["filetime"]=> int(-1) ["ssl_verify_result"]=> int(0) ["redirect_count"]=> int(0) ["total_time"]=> float(0) ["namelookup_time"]=> float(0.001483) ["connect_time"]=> float(0) ["pretransfer_time"]=> float(0) ["size_upload"]=> float(0) ["size_download"]=> float(0) ["speed_download"]=> float(0) ["speed_upload"]=> float(0) ["download_content_length"]=> float(0) ["upload_content_length"]=> float(0) ["starttransfer_time"]=> float(0) ["redirect_time"]=> float(0) } ["_data:protected"]=> bool(false) }
  • Aug 07, 2009
    issue 10 (_validatePositiveInteger) changed by mattwilliamsnyc   -   Thanks Cristiano. Good catch. I'll make sure this gets updated in the next release.
    Status: Accepted
    Owner: mattwilliamsnyc
    Thanks Cristiano. Good catch. I'll make sure this gets updated in the next release.
    Status: Accepted
    Owner: mattwilliamsnyc
  • Jul 31, 2009
    issue 10 (_validatePositiveInteger) reported by cristiano.rastelli   -   On 32bit sistems the maximum valid integer is 2147483647, but IDs on Twitter now are larger (ex. 5095334700020). Do you think should be handled differently the _validatePositiveInteger function? Maybe something that just test if it is numeric and positive: protected static function _validatePositiveInteger($name, $value) { if(0 >= $value || !is_numeric($value))
    On 32bit sistems the maximum valid integer is 2147483647, but IDs on Twitter now are larger (ex. 5095334700020). Do you think should be handled differently the _validatePositiveInteger function? Maybe something that just test if it is numeric and positive: protected static function _validatePositiveInteger($name, $value) { if(0 >= $value || !is_numeric($value))
  • Jun 23, 2009
    issue 9 (PHP error) commented on by sjjohn57   -   version 2.2 here are the lines around the area of line 44. It looks pretty clean to me. Are you testing with PHP ver 5.2.5? */ class Arc90_Service_Twitter { /** Entry point for the Twitter API */ const API_URI = 'twitter.com'; /**#@+ {@link http://apiwiki.twitter.com/REST+API+Documentation#StatusMethods} */
    version 2.2 here are the lines around the area of line 44. It looks pretty clean to me. Are you testing with PHP ver 5.2.5? */ class Arc90_Service_Twitter { /** Entry point for the Twitter API */ const API_URI = 'twitter.com'; /**#@+ {@link http://apiwiki.twitter.com/REST+API+Documentation#StatusMethods} */
  • Jun 23, 2009
    issue 9 (PHP error) Owner changed by mattwilliamsnyc   -   I was unable to reproduce this error using either the 2.2.0 release or the 2.2.2 release from the downloads page. Could you tell me exactly which download you're using? If there's a syntax error in a tag, I'll fix and replace it.
    Owner: mattwilliamsnyc
    I was unable to reproduce this error using either the 2.2.0 release or the 2.2.2 release from the downloads page. Could you tell me exactly which download you're using? If there's a syntax error in a tag, I'll fix and replace it.
    Owner: mattwilliamsnyc
  • Jun 23, 2009
    issue 9 (PHP error) reported by sjjohn57   -   What steps will reproduce the problem? 1. Run the code snippet from the install file 2. 3. What is the expected output? What do you see instead? echo of the timeline. Getting: Parse error: parse error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/content/s/j/t/sjtwwd/html/Arc90/Service/Twitter.php on line 44 What version of the product are you using? On what operating system? 2.2 PHP 5.2.5 Linux p3slh139.shr.phx3.secureserver.net 2.4.21-53.ELsmp #1 SMP Wed Nov 14 03:54:12 EST 2007 i686 Please provide any additional information below.
    What steps will reproduce the problem? 1. Run the code snippet from the install file 2. 3. What is the expected output? What do you see instead? echo of the timeline. Getting: Parse error: parse error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/content/s/j/t/sjtwwd/html/Arc90/Service/Twitter.php on line 44 What version of the product are you using? On what operating system? 2.2 PHP 5.2.5 Linux p3slh139.shr.phx3.secureserver.net 2.4.21-53.ELsmp #1 SMP Wed Nov 14 03:54:12 EST 2007 i686 Please provide any additional information below.
  • Jun 04, 2009
    issue 8 (verifyCredentials() send a request without Auth) changed by mattwilliamsnyc   -   Thanks. I'll get this fix into the next release.
    Status: Accepted
    Owner: mattwilliamsnyc
    Thanks. I'll get this fix into the next release.
    Status: Accepted
    Owner: mattwilliamsnyc
  • Jun 04, 2009
    issue 7 (profile and background images not uploaded) Owner changed by mattwilliamsnyc   -   Jeroen - I'll leave this ticket open for a little while in case this really is a bug, but I believe this is an issue with Twitter and not the library. See here: http://twitter.com/twitterapi/status/1998378866 If you find that you are able to upload images using some other method, but not with the library, let me know.
    Owner: mattwilliamsnyc
    Jeroen - I'll leave this ticket open for a little while in case this really is a bug, but I believe this is an issue with Twitter and not the library. See here: http://twitter.com/twitterapi/status/1998378866 If you find that you are able to upload images using some other method, but not with the library, let me know.
    Owner: mattwilliamsnyc
  • Jun 03, 2009
    issue 8 (verifyCredentials() send a request without Auth) reported by dimitryb   -   Last line in that function is: return $this->_sendRequest($uri, FALSE); Should be: return $this->_sendRequest($uri, TRUE);
    Last line in that function is: return $this->_sendRequest($uri, FALSE); Should be: return $this->_sendRequest($uri, TRUE);
  • May 30, 2009
    issue 7 (profile and background images not uploaded) reported by jeroen.playak   -   I can't seem to update background and profile images. The functions return the profile of the account, and the old images are removed, but the new images do not appear... Anybody else had this problem and knows a solution?
    I can't seem to update background and profile images. The functions return the profile of the account, and the old images are removed, but the new images do not appear... Anybody else had this problem and knows a solution?
  • May 20, 2009
    r68 (Updated strlen to mb_strlen and set default character encodi...) committed by mattwilliamsnyc   -   Updated strlen to mb_strlen and set default character encoding to UTF-8
    Updated strlen to mb_strlen and set default character encoding to UTF-8
  • May 06, 2009
    issue 6 (Source parameter deprecated for non-OAuth apps) Owner changed by mattwilliamsnyc   -  
    Owner: mattwilliamsnyc
    Owner: mattwilliamsnyc
  • May 06, 2009
    issue 6 (Source parameter deprecated for non-OAuth apps) Status changed by mattwilliamsnyc   -   Awesome. Thanks, Eric. I definitely don't mind involvement. The Twitter API is constantly evolving, so I appreciate the heads up. I applied a slightly modified version of your patch and checked in the changes to trunk. My additional change was to the getFavorites() method. If no 'id' parameter is used, an authenticated call returns the authenticating user's favorites. Otherwise, if an 'id' is specified, the method doesn't use authentication. Thanks again. - Matt
    Status: Started
    Awesome. Thanks, Eric. I definitely don't mind involvement. The Twitter API is constantly evolving, so I appreciate the heads up. I applied a slightly modified version of your patch and checked in the changes to trunk. My additional change was to the getFavorites() method. If no 'id' parameter is used, an authenticated call returns the authenticating user's favorites. Otherwise, if an 'id' is specified, the method doesn't use authentication. Thanks again. - Matt
    Status: Started
  • May 06, 2009
    r67 (Removing deprecated source parameter - slightly modified ver...) committed by mattwilliamsnyc   -   Removing deprecated source parameter - slightly modified version of patch submitted by emartin24
    Removing deprecated source parameter - slightly modified version of patch submitted by emartin24
  • May 06, 2009
    issue 5 (Auth parameter for functions that don't require authenticati...) changed by mattwilliamsnyc   -   Thanks for the patch. I've applied your changes and checked them into trunk. They'll be in the next tag (should come soon).
    Status: Started
    Owner: mattwilliamsnyc
    Thanks for the patch. I've applied your changes and checked them into trunk. They'll be in the next tag (should come soon).
    Status: Started
    Owner: mattwilliamsnyc
  • May 06, 2009
    r66 (Checking in patch from emartin24 that unsets credentials for...) committed by mattwilliamsnyc   -   Checking in patch from emartin24 that unsets credentials for API calls that do not require them.
    Checking in patch from emartin24 that unsets credentials for API calls that do not require them.
  • May 05, 2009
    issue 6 (Source parameter deprecated for non-OAuth apps) reported by emartin24   -   I hope you don't mind my "involvement", but it looks like the source parameter is no longer supported for cURL requests - it is only for OAuth apps and is automatically determined: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/ce57405a08483877/ If that is the case, the $source parameter could be removed from Arc90. I'm attaching a patch that mostly removes source (and includes the auth patch as well).
    I hope you don't mind my "involvement", but it looks like the source parameter is no longer supported for cURL requests - it is only for OAuth apps and is automatically determined: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/ce57405a08483877/ If that is the case, the $source parameter could be removed from Arc90. I'm attaching a patch that mostly removes source (and includes the auth patch as well).
  • May 05, 2009
    issue 5 (Auth parameter for functions that don't require authenticati...) reported by emartin24   -   Not a big deal - just a patch that adds FALSE for the $auth parameter for requests that do not require authentication (according to the API documentation).
    Not a big deal - just a patch that adds FALSE for the $auth parameter for requests that do not require authentication (according to the API documentation).
  • Apr 28, 2009
    issue 4 (Twitter API change (replies -> mentions)) changed by mattwilliamsnyc   -   Eric, I applied your patch, verified the working changes, and committed a new tag (2.2.2). Thanks for the fix! ~ Matt
    Status: Verified
    Owner: mattwilliamsnyc
    Eric, I applied your patch, verified the working changes, and committed a new tag (2.2.2). Thanks for the fix! ~ Matt
    Status: Verified
    Owner: mattwilliamsnyc
  • Apr 28, 2009
    r65 (Tagging 2.2.2 release. ) committed by mattwilliamsnyc   -   Tagging 2.2.2 release.
    Tagging 2.2.2 release.
 
Hosted by Google Code