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

2010-09-14 Thread Raghu Prasad
On Mon, Sep 13, 2010 at 8:40 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Raghu, One thing I recommend checking is that you're using the supported URL scheme for API-based profile image uploads, http://api.twitter.com/1/account/update_profile_image.json Spot on! This was the

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] PHP, Curl an OAuth Echo errors

2010-09-14 Thread Tom van der Woerdt
I don't have an example, but you should use the X-Auth-Service-Provider header for the URL and X-Verify-Credentials-Authorization for the Authorization: header. If you use these, it should be fine. Tom On 9/14/10 2:03 AM, sdenike wrote: I have been trying for weeks here to get this going and

Re: [twitter-dev] Re: Request Token Failure

2010-09-14 Thread Tom van der Woerdt
Ah, ok. The header allows you to make one (1) call to Twitter, usually the verify_credentials.json page. This allows you to verify that the user has a Twitter account (and even get some information about the user), but it will not allow you to send messages etc. OAuth Echo is nothing more than a

[twitter-dev] How to use TwitterME on Blackberry....

2010-09-14 Thread Zahid Naqvi
Hello, I am new with twitterme api and i am making an application on blackberry which will post the articles on the twitter. i registered my application with the twitter and get the token and keys. what i want in my application that whenever user provide there credentials than i want to post

[twitter-dev] how to convert basic auth to oauth

2010-09-14 Thread Goraksha Shinde
how to convert basic auth to oauth. I m using adobe AIR -- 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

[twitter-dev] Re: Missing entities in REST

2010-09-14 Thread FearMediocrity
I don't think your doing anything wrong. include_entities hasn't worked for me since late last week. @twitterapi mentioned a problem, but then nothing since. Can we have an update please? On Sep 13, 7:16 pm, Jesse jesse.kah...@gmail.com wrote: Hi, I'm trying to view my last tweet, but I can't

Re: [twitter-dev] Re: Missing entities in REST

2010-09-14 Thread Taylor Singletary
Hi Everyone, We're still investigating this issue -- it is not happening consistently across the board and has been difficult to track down. If you're *never* getting entities when requesting timelines, and you're including include_entities=true then please leave your member id here for

[twitter-dev] twitter relationship

2010-09-14 Thread ashy
Hi All, I want to represent the relationship seen in twitter into the database. For eg : user1 is following user2, user3, user 4, user 5 and user6. But user5 and user6 are following user1 in turn. How would design the database to represent this relationship. Any ideas? thanks ashy --

Re: [twitter-dev] how to convert basic auth to oauth

2010-09-14 Thread Taylor Singletary
Hi Goraksha, There are probably a few developers here familiar with the AIR platform who can offer you some tips. I am aware that a number of developers have worked with the AS3 OAuth library here: http://code.google.com/p/oauth-as3/ You may find our introduction to the conversion process guide

[twitter-dev] get starting with xAuth for TwitterAPI

2010-09-14 Thread andreas-wilkeme...@andreazw.de
Hello everyone, I have any problems to develop my desktop-Application with an own Twitter Client. In my client to the user have the option to enter their user data. I hope anyone can help me. I have register an application on twitter and have get an Token_key and token_secret after send a request

[twitter-dev] Getting the latest status

2010-09-14 Thread Matei
Hi all, I was wondering what the best way to get a user's latest status is. Right now I am using the verify_credentials call to do it, since I don't really know the user Id from the OAuth flow. The trouble with this approach is that the result doesn't always include the status. Is there a better

Re: [twitter-dev] Getting the latest status

2010-09-14 Thread Taylor Singletary
Hi Matei, The simplest way to accomplish this would be a single GET request. GET http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=twitterapicount=1include_rts=true If you weren't interested in processing retweets, you could omit the include_rts=true parameter, but I would bump

[twitter-dev] Re: list api create_all method not working

2010-09-14 Thread Ken
Finally, after discovering this thread, I added /members/ to the create_all endpoint and was able to add 98 members to a list. As twitter would say, 'Yay'... I filed a bug to have the documentation corrected. Are there still problems adding lots of members, as reported earlier in this thread?

[twitter-dev] HttpRequest and Unshortening problems

2010-09-14 Thread João Paulo Sabino de Moraes
Hi Everyone, I was trying to make httpRequst with shortened urls , but I think it is not possible So now I'm first unshorting the url and then making the httpRequest. I'm using http://untiny.me as unshortener server, but I'm getting Unshortener Errors at 80% of urls... So , dou you

[twitter-dev] Re: Oauth problems?

2010-09-14 Thread MTCoder
thanks, that did the trick for reading the timeline. Now I'm having problems writing to the account. Any ideas? basestring: POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fupdate.xml oauth_consumer_key%3Dx%26 oauth_nonce%3D444E51674F345149343D3D6A4D54304D%26

[twitter-dev] POSTing problem

2010-09-14 Thread MTCoder
Im posting this again here to make sure its seen (other thread here http://groups.google.com/group/twitter-development-talk/browse_thread/thread/fb1f29a6e43c48e3) I have tried many different things and cant seem to get the status POST to work(thanks Tom for the help with getting the timeline).

Re: [twitter-dev] Re: Oauth problems?

2010-09-14 Thread Tom van der Woerdt
Is that your full request? I don't see a Host: header, I don't see an User-Agent header, etc. Tom On 9/14/10 6:53 PM, MTCoder wrote: thanks, that did the trick for reading the timeline. Now I'm having problems writing to the account. Any ideas? basestring:

Re: [twitter-dev] list members cursor is wrong

2010-09-14 Thread Matt Harris
GET works fine for this method and when I test the cursors for your list below everything works correctly. So we can work out what is going on can you share the headers you are sending to the API. Also, you will want to update your URLs to the correct host. The correct URL to use is

Re: [twitter-dev] POSTing problem

2010-09-14 Thread Tom van der Woerdt
It says setting up my twitter in the Base String, not status=setting up my twitter. Tom On 9/14/10 7:30 PM, MTCoder wrote: Im posting this again here to make sure its seen (other thread here http://groups.google.com/group/twitter-development-talk/browse_thread/thread/fb1f29a6e43c48e3) I

[twitter-dev] Re: Get All Followers Using twitteroauth

2010-09-14 Thread Paulo Fernandes
Hi I tryed and I did this code. $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']); $content = $connection-get('account/verify_credentials'); $totalFollowers = $content-followers_count; $cursor = -1; $qtd =

[twitter-dev] Re: list api create_all method not working

2010-09-14 Thread Jim Chevalier
Hello, I find that pushing 99 users into a create_all call will fall over fairly often with a 502 error. To get around that, I've backed down as far as 5... Although, and I might be just totally completely wrong about this, it seems like the response codes don't *completely* line up with the

[twitter-dev] Re: POSTing problem

2010-09-14 Thread MTCoder
still getting the 401 basestring: POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fupdate.xml oauth_consumer_key%3D3RmYCDlNEUoRLXmeQDgA%26 oauth_nonce%3D4E444934514E7A30544D344D6B3D673D%26 oauth_signature_method%3DHMAC-SHA1%26 oauth_timestamp%3D1284487942%26

[twitter-dev] i'm looking for a Twitter expert

2010-09-14 Thread Alfredo Baraldi
My develop site is wetradetogether.com. I need help to: - Starts on listening to public statuses in particular tweets that contain the stock symbol preceded by $. - Implement twitter4j library - Assists me to ask Twitter the signed access agreement to access to the Firehose. Regards Alfredo

[twitter-dev] Re: OAuth Via AppleScript

2010-09-14 Thread Ankur Oberoi
have you finished the applescript for oauth? if you are planning on releasing it, i would be interested to grab a copy. thanks! On Aug 11, 3:22 pm, isaiah1112 isaiah1...@gmail.com wrote: You were right! I forgot to sort them... Thanks! On Aug 11, 1:14 pm, Tom van der Woerdt i...@tvdw.eu wrote:

Re: [twitter-dev] Re: OAuth Via AppleScript

2010-09-14 Thread Jesse Almanrode - JA Computing
Yes... I am currently working on testing its functionality and inclusion into the original ASTwitterLibrary suite. I am hoping for a release date in the next month or so... There will actually be two pieces of it. The heavy OAuth lifting will be performed by my main AppleScript library,

[twitter-dev] Re: Getting the latest status

2010-09-14 Thread Matei
Thanks Taylor! {face palm} Cheers, Matei On Sep 14, 10:58 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Matei, The simplest way to accomplish this would be a single GET request. GEThttp://api.twitter.com/1/statuses/user_timeline.xml?screen_name=twitt... If you weren't

Re: [twitter-dev] Re: POSTing problem

2010-09-14 Thread Tom van der Woerdt
Your Base String looks fine. Are you using the right keys to sign the request? Is there any response from the API, except for 401? (Error message?) Tom On 9/14/10 8:14 PM, MTCoder wrote: still getting the 401 basestring: POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fupdate.xml

[twitter-dev] Fwd: REST API Server Headers wrong?

2010-09-14 Thread yaemog Dodigo
Hello, (sorry for the resend but i did not see this message appear on the list) It occurs from time to time that the rest api servers don't deliver responses, and I'm not complaining about that. However, why would the server answer with a 500 Http status code, a content type of application/json

Re: [twitter-dev] Fwd: REST API Server Headers wrong?

2010-09-14 Thread Taylor Singletary
Hi there, Often when throwing error pages, it happens at a level that does not understand basic concepts like the disposition of content you are expecting back. When this happens, a generic error response is thrown, which in this case happens to be our HTML representation. We, obviously, don't

[twitter-dev] Re: POSTing problem

2010-09-14 Thread MTCoder
all the keys are the same that use when making calls to get the timeline. Steve On Sep 14, 1:08 pm, Tom van der Woerdt i...@tvdw.eu wrote: Your Base String looks fine. Are you using the right keys to sign the request? Is there any response from the API, except for 401? (Error message?) Tom

Re: [twitter-dev] Re: POSTing problem

2010-09-14 Thread Taylor Singletary
MTCoder: You've got a little bit of an escaping problem here.. First, spaces aren't valid characters for your POST body. Personally, I recommend using %20 to represent a space. + would also be valid in a POST body. Once your POST body is correct, the escaping for your OAuth signature base

[twitter-dev] home_timeline count

2010-09-14 Thread Matei
Hi all, I was wondering if there is an good way of getting a count of statuses in home_timeline. I have to implement a Load more feature which loads more tweets if they are available. The issue is with available part. The API doesn't reliably return 20 unfortunately so I can;t simply hide the

[twitter-dev] Re: 01:Authentication credentials were missing or incorrect. / ColdFusion + Twitter4J

2010-09-14 Thread Andy Reid
Oddly enough. No. I just dumped the response toString(): OAuthToken{token='z', tokenSecret='y', secretKeySpec=null} This is odd because it actually comes back to the correct page. However, when I manually set the default callback url (in dev.twitter.com) the oAuth worked

Re: [twitter-dev] Re: 01:Authentication credentials were missing or incorrect. / ColdFusion + Twitter4J

2010-09-14 Thread Tom van der Woerdt
Sounds like the oauth_callback parameter for /oauth/request_token is wrong. ;-) Tom On 9/14/10 10:47 PM, Andy Reid wrote: Oddly enough. No. I just dumped the response toString(): OAuthToken{token='z', tokenSecret='y', secretKeySpec=null} This is odd because it actually

[twitter-dev] Re: Missing entities in REST

2010-09-14 Thread Georgios
The same thing happens to me when I use the favorites resources. It doesn't matter which user's favorites I am trying to get, entities are never there. Last time I saw entities for favorites was 11th September. Thanks Georgios Favorious - http://favorious.com - The best of Twitter, based on

[twitter-dev] Re: Why is Basic Auth still enabled on some sources?

2010-09-14 Thread funkatron
I appreciate the response, Ryan. I'll say that it's a bummer to find out about this in that way. Twitter made a big deal about how Basic Auth was being shut off, so finding out that there were exceptions like this is confusing and disconcerting. No matter the intent, it is hard to feel respected

[twitter-dev] Video of tonight's event?

2010-09-14 Thread @twepe
Any idea if anyone is streaming video of tonight's event? -- 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

Re: [twitter-dev] Video of tonight's event?

2010-09-14 Thread Taylor Singletary
While Twitter is not providing a feed, @scobleizer is: http://www.ustream.tv/channel/scobleizer Taylor On Tue, Sep 14, 2010 at 3:04 PM, @twepe pe...@twe.pe wrote: Any idea if anyone is streaming video of tonight's event? -- Twitter developer documentation and resources:

[twitter-dev] Re: POSTing problem

2010-09-14 Thread MTCoder
I am away from my work computer so i cant try out this suggestion just yet but is this what it should look like when i do? basestring: POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fupdate.xml oauth_consumer_key%3D3RmYCDlNEUoRLXmeQDgA%26 oauth_nonce%3D4E444934514E7A30544D344D6B3D673D%26

Re: [twitter-dev] Video of tonight's event?

2010-09-14 Thread M. Edward (Ed) Borasky
As long as nobody is wearing a meat dress, I'll tune in. ;-) -- M. Edward (Ed) Borasky http://borasky-research.net http://twitter.com/znmeb A mathematician is a device for turning coffee into theorems. - Paul Erdos Quoting Taylor Singletary taylorsinglet...@twitter.com: While Twitter is not

[twitter-dev] Re: Authentication failing for status POST in C#

2010-09-14 Thread hyronymous
The base string is: POSThttp%3a%2f%2fapi.twitter.com%2f1%2fstatuses %2fupdate.jsonoauth_consumer_key%3dA5l9hSVM5Hznf5p1pBwNsg %26oauth_nonce%3dJOCvtqemMQg1k0XnFjbH0MQPxr6Yme7zcei6mZO6ZP %26oauth_signature_method%3dHMAC-SHA1%26oauth_timestamp %3d1284512080%26oauth_token%3d189085164-

[twitter-dev] Re: Authentication failing for status POST in C#

2010-09-14 Thread hyronymous
Woops, sorry and the response that I get back is: {request:/1/statuses/update.json,error:Incorrect signature} -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

[twitter-dev] Mentions and direct_messages cannot be acquired.

2010-09-14 Thread Grips
I have been trying to convert to OAuth using a sample code called Twitter-OAuth-iPhone without much success. I am able to obtain [user-timeline]/[friends] using NSXMLParser but I am NOT able to show [mentions]/[direct_messages] or any direct tweet to my account for that matter. Can someone tell

Re: [twitter-dev] Video of tonight's event?

2010-09-14 Thread M. Edward (Ed) Borasky
I had to chuckle when Ellen Degeneres asked what the difference was between wearing an outfit made of meat and one made of leather. My response was that the poor couldn't eat leather. ;-) -- M. Edward (Ed) Borasky http://borasky-research.net http://twitter.com/znmeb A mathematician is a

[twitter-dev] Re: list members cursor is wrong

2010-09-14 Thread Brad
Thanks, Matt, This is the full request

[twitter-dev] Re: iPhone::Incorrect oauth_signature for xAuth?

2010-09-14 Thread Nikolay Klimchuk
Can somebody recalculate test example from http://dev.twitter.com/pages/xauth ??? I'm looking for oauth_signature parameter I'm getting different result and it does not make any sense so far On Sep 13, 2:54 pm, Nikolay Klimchuk klimc...@gmail.com wrote: Thanks Tom I feel better now LoL On

[twitter-dev] Too often 401 error

2010-09-14 Thread MH
I implemented oAuth API and it workes. But sometimes I get 401 Error. When I get this error, I retry with the same application and it workes. Same Server, Same logic, usually workes well but sometimes I get error. What's the problem? -- Twitter developer documentation and resources:

Re: [twitter-dev] Too often 401 error

2010-09-14 Thread Lional King
I have the same problem in Android platform. I implemented Key and Secrit into new OAuthSignpostClient.but OAuthSignpostClient not work. How can I client twitter with new API? any example demo for me ? 2010/9/15 MH minhee...@gmail.com I implemented oAuth API and it workes. But sometimes I get

[twitter-dev] New Twitter API?

2010-09-14 Thread PeekURL.com
I run a URL shortener that plays Youtube videos. When someone clicks a link like http://peekURL.com/va1gk1h how do I play that video in the right pane on the New Twitter? Can I show ads there? The videos will all be coming from Youtube or Myspace, but if Twitter isn't going to allow third-party

Re: [twitter-dev] Re: list api create_all method not working

2010-09-14 Thread Zahid Naqvi
Hi, Can anyone suggest me that how i can integrate my Blackberry application with twitter. I am using Twitter me 1.4 api for this. -- *Thanks Regards* *Zahid Naqvi | Senior Software Engineer* -- * G1-11, I.T.Park, M.I.A. (Extn.)

Re: [twitter-dev] New Twitter API?

2010-09-14 Thread Zac Bowling
I'm not sure about the question, but it has me thinking. I know it's kind of a failed tech these days but wouldn't it be funny if twitter could host an OpenSocial like container thing in the right pain based on the a tweet link? It could open that right area to all sorts of dynamic content.