Re: [twitter-dev] OAuth token lifetime

2011-04-23 Thread CWorster
2011/4/23 yeohray yeoh...@myjaring.net: If my app has used OAuth to log on, and can now send tweets, how long can I use the token for?  Is it indefinite, or a set amount of time, after which I have to repeat the OAuth logon process again? Hi, quote from the FAQ: How long does an access token

Re: [twitter-dev] Re: Error: Operation could not be completed. (HTTP error 404.)

2011-03-21 Thread CWorster
2011/3/21 sangeeta katsange...@gmail.com: Hello, Actually i tried with https://api.twitter.com/1/statuses/show/268146346.xml where 268146346 is one of my friend id even then i am getting the same 404 error(operation could not be completed) Pliz help me.. Hi, statuses/show? I can't

Re: [twitter-dev] Re: Error: Operation could not be completed. (HTTP error 404.)

2011-03-21 Thread CWorster
2011/3/21 sangeeta katsange...@gmail.com: This api is in tweet resources Of course, thanks. The parameter must be an ID of a status, not an users ID. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

Re: [twitter-dev] lang=en queries to search API not working

2010-11-27 Thread CWorster
I ran into the same problem in june/july. I added the since parameter to solve the problem. Example: http://search.twitter.com/search.atom?lang=enq=thanksgivingsince=2010-11-24 Make sure the since parameter is not more then 5/6 days back in the past. Cheers P.S.: On the new API-Documentation

Re: [twitter-dev] PHP json_decode and snowflake

2010-11-06 Thread CWorster
If you have a sufficient PHP-Version (=5.3 http://www.php.net/manual/en/function.json-decode.php) you can try this: $array = json_decode($json, true, 512, JSON_BIGINT_AS_STRING); I had no luck on Debian/Squeeze, so I'm using for now this quick dirty hack: $array =

Re: [twitter-dev] Twitter stopped working

2010-11-01 Thread CWorster
It used to work adn I ahve no idea why it has now stopped so can someone please point me in the right direction - thanks DST (Daylight saving time) ended in some regions. As Taylor recommended, check your system clock. -- Twitter developer documentation and resources:

Re: [twitter-dev] Authlogic OAuth 401 error

2010-10-22 Thread CWorster
Maybe it's an issue with the clock/timestamp on your production system. http://groups.google.com/group/twitter-development-talk/browse_thread/thread/b1faa40fb795a147/62183a53c25bd453 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Can the Twitter API grab results from the who_to_follow/interests/music url?

2010-10-21 Thread CWorster
Hi, to get the categories: http://dev.twitter.com/doc/get/users/suggestions To receive the list of users of a given category: http://dev.twitter.com/doc/get/users/suggestions/:slug Example: http://api.twitter.com/1/users/suggestions/music/members.xml Hope this helps. Chris -- Twitter

Re: [twitter-dev] Can the Twitter API grab results from the who_to_follow/interests/music url?

2010-10-21 Thread CWorster
Add: http://api.twitter.com/1/users/suggestions/music/members.xml (includes last status) http://api.twitter.com/1/users/suggestions/music.xml (pure user list) -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

Re: [twitter-dev] Re: Extreme caching of deleted tweets in 'statuses/home_timeline'

2010-10-13 Thread CWorster
Thanks a lot for your replies.and confirmation! -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group:

Re: [twitter-dev] status destroy / caching in NewTwitter.

2010-10-13 Thread CWorster
Hi Tom, very nice find. Manually switching between old- and newtwitter will flush the ''statuses/home_timeline'' API-Endpoint. Hope this issue will get some attention from Twitter-Devs. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Extreme caching of deleted tweets in 'statuses/home_timeline'

2010-10-10 Thread CWorster
Hello, I start noticing this issue 3-4 days ago. The deleted tweets disappeared after several hours (up to 12 h). Today there's a deleted status (26830561229) that still show up in 'statuses/home_timeline' after 22 hours. 'statuses/show' on that Id gives a correct: Not Found: The URI requested

Re: [twitter-dev] Need Help to developing Twitter Client

2010-09-28 Thread CWorster
Hi,  I am peter, I am using QT Framework. Do you mean Trolltech's Qt (lowercase t)? If yes, for the OAuth dance: http://qt-apps.org/content/show.php/QOAuth?content=107420 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Re: REST API entities enabled by default?

2010-09-20 Thread CWorster
*facepalm* how could I read entities == retweets? Sorry for that. 2010/9/19 SkyLifeLabs ch...@skylifelabs.com: Thanks, you are correct. I should have been more specific: I would like the retweets but not the entity data for the 'entities' node which I thought was opt-in only using

Re: [twitter-dev] I have one problem with from_user_id and id

2010-09-19 Thread CWorster
That's a known defect. Quote from API documentation: http://dev.twitter.com/doc/get/search Warning: The user ids in the Search API are different from those in the REST API (about the two APIs). This defect is being tracked by Issue 214. This means that the to_user_id and from_user_id field vary

Re: [twitter-dev] REST API entities enabled by default?

2010-09-19 Thread CWorster
http://api.twitter.com/1/statuses/user_timeline/transportworker.xml?include_rts=true You're appending include_rts=true, that is the opt-in parameter to get the retweets inline. -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Re: Seeing duplicate Twitter User ID's under the same Username in our DB

2010-09-14 Thread CWorster
Another thought. Are you feeding your DB with normal API endpoints and the search API endpoint? The search API returns different user_ids. http://dev.twitter.com/doc/get/search http://code.google.com/p/twitter-api/issues/detail?id=214 -- Twitter developer documentation and resources:

Re: [twitter-dev] What is the status of profile image changes via API?

2010-09-13 Thread CWorster
Hi Raghu, the profile image upload via API works fine. The new image is returned immediately. No caching issues. I'm using the PHP library from Matt Harris. http://github.com/themattharris/tmhOAuth -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via

Re: [twitter-dev] Create a favorite

2010-09-05 Thread CWorster
Hi, change this line: $connection-post('favorites/create', array('id' = $qtweet)); into: $connection-post('favorites/create/'.$qtweet); $qtweet = $_REQUEST['fav']; Make sure that $_REQUEST['fav'] is containing an existing ID. Check your Form: input style=width: 346px; name=fav id=fav

Re: [twitter-dev] Re: How to get many user objects without hitting the rate limit?

2010-08-15 Thread CWorster
Hi all I need to get the user information for all the @user_mentions in a single timeline every time in load the website I'm building. This will need to include the username and profile_image_url at the very least, if not some other information associated with the user. If i pull back the

Re: [twitter-dev] Re: I ask to debug [0] = array and list = Array

2010-08-06 Thread CWorster
Hi, I wanted to know what the variable here's a list about return values I found in the old Api-Wiki http://apiwiki.twitter.com/Return-Values. Unfortunately not all values are described (e.g. show_all_inline_media). Cheers Christian

Re: [twitter-dev] Favor api not working?

2010-07-06 Thread CWorster
Hi,  https://api.twitter.com/1/favorites/17866945968/create.json post this url : https://api.twitter.com/1/favorites/create/17866945968.json

Re: [twitter-dev] Previous_Cursor Not Working

2010-07-05 Thread CWorster
Same problem here. I'm using previous_cursor_str and next_cursor_str. previous_cursor_str stopped working. next_cursor_str works as expected. 2010/7/5 Ron rbther...@gmail.com: Anyone else seeing a problem on Followers or Friends with Previous_Cursor not working (returning a blank response)?