Re: [twitter-dev] Needs object from desktop application ?

2011-06-23 Thread Ari Endo
Dear Tom, There are several Excel VBA application which can be authenticated. The point is they make a twitter class and make an object to access. I am developing without using class (object-oriented). 1. my time is correct (UTC) 2. my signature is correct (compared with the sample in twitter

Re: [twitter-dev] Needs object from desktop application ?

2011-06-23 Thread Ari Endo
Dear Tom, Here is my vba code, just for your information. It returns 401 Unauthorized, Failed to validate oauth signature and token I appreciate if you give me a hint. - Private Sub cbRequestToken_Click() Const urlRequestToken As String =

[twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread JackRabbit
Hi Guys, is it possible to query streaming api with filter and include start_date and end_date, so that developer can track or filter by date range? If yes, that could be awesome, if no, would you mind please to add this feature? Why it is needed because it would be great if we can track keyword

[twitter-dev] Switching Application Type to Browser

2011-06-23 Thread Victoria
Hello, I am modifying my Mac Twitter client to use OAuth, but I receive 401 errors when the app attempts to acquire a request token. I substituted a consumer key/secret from a test app, and that didn't work either. However, when I switched the test app's Application Type to Browser and added a

[twitter-dev] http://groups.google.com/group/twitter-development-talk

2011-06-23 Thread dalvir
I am using the following code. This was working fine. oAuthTwitter oAuth = new oAuthTwitter(); oAuth.Token = Token; oAuth.TokenSecret = secrentoken; TwitterToken objtwitter = new TwitterToken();

Re: [twitter-dev] http://groups.google.com/group/twitter-development-talk

2011-06-23 Thread kamesh SmartDude
use the API Url. https://twitter.com/1/statuses/user_timeline.xml //kamesh On Thu, Jun 23, 2011 at 1:02 PM, dalvir sainidal...@gmail.com wrote: I am using the following code. This was working fine. oAuthTwitter oAuth = new oAuthTwitter(); oAuth.Token =

[twitter-dev] Re: Introducing the Follow Button

2011-06-23 Thread David Huang
Seems like my issue was fixed during maintenance.. http://status.twitter.com/post/6816501955/follow-button-off-line Thanks, David On Jun 15, 11:06 am, David Huang linshunghu...@gmail.com wrote: Hi all, I was testing the new Follow button on my webpage and noticed that one-click only works

[twitter-dev] Re: Does twitter offer any hook to register a click on the tweet button iframe?

2011-06-23 Thread Drew
Thanks. That almost works. We have multiple (one for each post) JS twitter buttons (which convert to iframes) on a page. According to http://dev.twitter.com/pages/intents-events I can use target to get a DOM reference to which one was clicked: target a DOM node reference to HTML element or

Re: [twitter-dev] Switching Application Type to Browser

2011-06-23 Thread Andrew W. Donoho
On Jun 23, 2011, at 02:51 , Victoria wrote: I assume I just need to switch my real app's type to Browser now, but I wanted to check—will the users of the old version of my app run into any problems if I do this? As I understand it, the authorization tokens that exist do not change. They

Re: [twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread Trevor Dean
This would be a great feature, any word on this yet? Trevor Dean | Director big time design communication Inc. 647 234 8198 Visit http://www.bigtimedesign.ca for more information On 2011-06-23, at 7:13 AM, JackRabbit yacobus.reinh...@gmail.com wrote: Hi Guys, is it possible to query

[twitter-dev] trying to add...

2011-06-23 Thread mire...@fortheloveofcakes.ca
hi I'm trying to add the twitter button on my website and everytime i copy the code and paste it in the HTML area it gives me the code even after I publish it...why? how do i fix this? -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter:

Re: [twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread Taylor Singletary
This is not within the scope of the real-time streaming API which serves the purpose of streaming tweets related events as they happen with very limited support for any kind of rewind behavior. On Thu, Jun 23, 2011 at 9:42 AM, Trevor Dean trevord...@gmail.com wrote: This would be a great

Re: [twitter-dev] how home time line in TWITTER works?

2011-06-23 Thread Matt Harris
Hi Grace, Be default the API returns the most recent Tweets/ReTweets created by users being followed by the authenticating user. When you pass a since_id to the home_timeline method this means the API will return to you the 20 most recent Tweets created since that ID. What this means is you

Re: [twitter-dev] Search widgets on both my sites suddenly stopped working

2011-06-23 Thread Matt Harris
Hi Zippy, The search index is limited in how far back it can go. What this means is if the hashtag you are searching for hasn't been used in the last week there won't be any results returned. In addition, not all Tweets are indexed by the Search API. This is explained a little more in our user

Re: [twitter-dev] How to autologin to twitter by providing the username and password using API?

2011-06-23 Thread Matt Harris
Hi Karthikeyan, The Twitter API doesn't provide a way for an application to log a user into Twitter.com. What information are you wanting to provide to the users of your application? Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter

Re: [twitter-dev] Re: error 401 from oauth, starting a few days ago

2011-06-23 Thread Matt Harris
Hi Arlo, When an error is returned by the API we include some information about the cause in the response body. Take a look at that response body and see if that helps you resolve the problem. If not, let us know what the error says and what your OAuth basestring and authorization

Re: [twitter-dev] Post small text link to twitter from my site

2011-06-23 Thread Matt Harris
Hi Santanu, The example code you have posted below makes use of basic authentication (username and password). The Twitter API hasn't support this method of authentication for a while and instead requires developers to implement OAuth. We have some guidance about how to make this transition on

[twitter-dev] Using xAuth in N8 (HELP)

2011-06-23 Thread Victor
Hello there, i am having troubles using the xAuth protocol in Widget for nokia N8. I was using javascript and php with the oAuth protocol and things went just fine, but now i don't have a clue where to start... i just doesn't get iti read tutorials, and the official docs in the sitebut

Re: [twitter-dev] Getting 401 errors trying to send direct message

2011-06-23 Thread Matt Harris
Hi Chris, On our developer resources page you can find some libraires which handle this process for you. You may find these a helpful reference to see how others have implemented the OAuth specification. The libraries are at this link: http://dev.twitter.com/pages/libraries The 401 error

[twitter-dev] Tweets not appearing properly from our app.

2011-06-23 Thread 900
Hi, We are having a problem with our application. When I tweet, the function statuses/user_timeline does not fetch tweets accurately. For instance, if I tweet something, the tweet won't appear for approximately one minute. It then intermittently appears and disappears. After a few minutes it

Re: [twitter-dev] Getting All Child Tweets From Paren Tweets.

2011-06-23 Thread Matt Harris
Hi Samyag, Replies are not the easiest things to get out of Twitter and there isn't an API method that will reliably do this for you. What you can do is follow the in_reply_to_status_id chain using the /1/statuses/show API request. This will allow you to trace a child Tweet back to it's

Re: [twitter-dev] trending topics order

2011-06-23 Thread Matt Harris
Hi, Yes, trending topic responses are returned in the order of most trending to least trending. In the example you give Guille Franco is trending more than Vuvuzela. Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Fri, Jun 17,

Re: [twitter-dev] how to add twitter login functionality to my site

2011-06-23 Thread Matt Harris
Hi Sheraz, When you say you wish to add a Twitter login to your site do you mean you want users to be able to sign into your site with their Twitter identity, or that you want to be able to log them into Twitter.com? If you want users to be able to sign-in into your website with their Twitter

Re: [twitter-dev] Re: ABUIKit / TwUI ?

2011-06-23 Thread Matt Harris
Thanks for your interest in the library. We hope to have information about it released soon. As soon as we do we'll let you know through the mailing list and through @twitterapi. Best @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Sun,

Re: [twitter-dev] Login to twitter using the oauth

2011-06-23 Thread Matt Harris
Hi Karthi. The Twitter API doesn't provide a way for an application to log a user into Twitter.com. Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Sun, Jun 19, 2011 at 11:40 PM, karthi karthivis...@gmail.com wrote: hi i have

Re: [twitter-dev] Follower count stuck...no one can follow me

2011-06-23 Thread Matt Harris
Hi Jeff, When I visited the account page for @NYNYfans I was able to follow the account successfully. Is there an error returned when you try and follow the accounts? Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Sun, Jun 19,

Re: [twitter-dev] OAuth error

2011-06-23 Thread Matt Harris
Hi, A 400 error indicates something in the request you are making is malformed. Are you using a library to make requests or did you create your own wrapper? If you created your own library for making requests you may instead want to try one of the libraries listed on our developer resources

Re: [twitter-dev] How many REST calls do you save with the streaming API?

2011-06-23 Thread Matt Harris
Fabien, Thanks for sharing this insight into how much the Streaming API is helping reduce the API calls you are making. It would be really interesting to hear the difference other developers are seeing. Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer

Re: [twitter-dev] Placing follow us and tweet buttons together just impossible

2011-06-23 Thread Matt Harris
Hi Fernando, You can instruct the follow button to hide the screen_name by passing the parameter show_screen_name as false. When using data attributes this would be written as data-show-screen-name=false. Remember that the user’s screen_name must always be displayed next to the Follow Button

Re: [twitter-dev] geo_place writeable container for Indonesia

2011-06-23 Thread Matt Harris
Hi Aldian, We don't have a timeline for any additional place regions. As with language support, if any additional countries/regions are added to our place database we will announce it on the Twitter Blog or through @twitterapi and this list. Best @themattharris

Re: [twitter-dev] inconsistent data when fetching the stream using location boxes

2011-06-23 Thread Matt Harris
Hey Thomas, Thanks for providing the examples. I'm a little confused about the latitude and longitude you have provided in your example Tweets. When I query those Tweets through the API I receive geo information which matches your Streaming API filter. Where are you reading the latitude and

Re: [twitter-dev] How long can we access a past profile picture?

2011-06-23 Thread Matt Harris
Hi yama, Older profile images maybe available for a short period of time after they are changed. This is due to caching and you shouldn't assume they will be there permanently. In answer to your other question, yes you should use the URL provided in the user object of the API responses. The

Re: [twitter-dev] Problem With User/lookup API

2011-06-23 Thread Matt Harris
Hi Kamesh, The users/lookup method isn't the best way to check for a following relationship. Instead you can either request your friends/ids and see if their user_id is included, or call /1/friendships/show.json: http://dev.twitter.com/doc/get/friendships/show Hope that helps, @themattharris

Re: [twitter-dev] Re: Twitter Authenticate displays Authorize screen and on reload it Authenticates and continues to callback

2011-06-23 Thread Matt Harris
Hey, The authenticate flow will display a login screen in a number of situations: * if the user isn't logged into twitter.com * if the user hasn't allowed the application access to their account before * if you pass the force_login or screen_name parameter to the authenticate endpoint * if the

Re: [twitter-dev] 500 errors from the search api on specific queries, related to geocode parameter.

2011-06-23 Thread Matt Harris
Hi Eric, Thanks for the update. I've passed this information onto the relevant team here. So we can keep track of this could you file a ticket on our public issue tracker: http://code.google.com/p/twitter-api/issues/list Thanks @themattharris

Re: [twitter-dev] Re: Error 403 while getFollowers : Twitter Iphone MGTwitterEngine

2011-06-23 Thread Matt Harris
Hi Echo, We haven't announced an end of life date for these methods but we wanted to mark them as deprecated so help developers know they are not suitable anymore. We recommend moving to the friends/ids, followers/ids and users/lookup pattern at your next opportunity though. Best,

Re: [twitter-dev] OAuth

2011-06-23 Thread Matt Harris
Hi Reet, Our developer resources site includes guidance and examples on how to use OAuth with the Twitter API. You can find more information on the following pages... Authentication: http://dev.twitter.com/pages/auth Libraries: https://dev.twitter.com/pages/libraries Using One Access

Re: [twitter-dev] Stream API Issues

2011-06-23 Thread Matt Harris
Hi Paul, I'm not able to reproduce this issue. I'm making my request like this: twurl -t /1/statuses/filter.json -d track=Boston,hockey,Obama -H ' stream.twitter.com' --no-ssl I would recommend not using terms like 'the, and, or' in your filter though. Those words are extremely common and

Re: [twitter-dev] Poor documentation. For example, regarding lists. Suggestions for improvement.

2011-06-23 Thread Matt Harris
Hi Dave, Thanks for your feedback, it's important for us to know when developers are not finding the information they are looking for. I have responded to your specific points inline: Issue #1: Valid version numbers I was unable to locate valid values for version. I tried 1.1.14, which I

Re: [twitter-dev] Re: A few updates about the permission model change

2011-06-23 Thread Matt Harris
Hi Aaron, I have't been able to reproduce this issue so could you email me details of the app and captures of the requests and responses. Then I can investigate further. Thanks, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Wed, Jun

Re: [twitter-dev] http://groups.google.com/group/twitter-development-talk

2011-06-23 Thread Matt Harris
Hi dalvir, The REST API lives on the domain api.twitter.com not twitter.com. The request you are making should be made to: http://api.twitter.com/1/statuses/user_timeline.json To understand the reason for the error you will need to inspect the response that comes back from the API. We put

Re: [twitter-dev] Re: Introducing the Follow Button

2011-06-23 Thread Matt Harris
Hi David, Glad to hear this is working for you now. For the benefit of everyone else this issue was identified and resolved in the last few days. Best, @themattharris https://twitter.com/intent/follow?screen_name=themattharris Developer Advocate, Twitter On Thu, Jun 23, 2011 at 9:07 AM, David

[twitter-dev] Can't Get OAuth To Work On My Site

2011-06-23 Thread David
Hi, I was wondering if anyone could help me? If you go to jesusay.com and click login you'll see the Twitter Oauth button... Can someone test it and maybe tell me what I'm doing wrong? It doesn't work. Thanks. -- Twitter developer documentation and resources: https://dev.twitter.com/doc API

[twitter-dev] Re: Switching Application Type to Browser

2011-06-23 Thread Victoria
On Jun 23, 11:34 am, Andrew W. Donoho andrew.don...@gmail.com wrote: As I understand it, the authorization tokens that exist do not change. They will just stop being authorized to send or read direct messages. IOW, old tokens are being limited in a new way. Your new version will be able to

[twitter-dev] Possible to find out how many people have see a tweet?

2011-06-23 Thread berr08
I am wondering if there is a way to see how many people have seen my tweet via Retweets. For instance I tweet Twitter is the best it is RT by one of my followers who has 1,000 followers, then by one of his followers who has 200 so my tweet has been seen by those users 1,200 people via Retweets.

[twitter-dev] Search API for getting tweet counts by date?

2011-06-23 Thread jburke
If I want to get tweet counts (for a particular query) by date over a particular date range, does the search API support? Is the date range limited to the tight range that is in place for search that returns tweets? -- Twitter developer documentation and resources: https://dev.twitter.com/doc

[twitter-dev] Re: Streaming API with start_date and end_date

2011-06-23 Thread Vags
I don't think this is an option available within Streaming API but you might create a short program that would start a request (e.g. cURL) at the desired time/date start_date and you can manually stop it (or also with a program) at end_date. I'm just concerned about what you mean by track keyword

Re: [twitter-dev] trying to add...

2011-06-23 Thread Matt Harris
Hi Mirella, Can you let us know a little bit more about the way you add the Tweet Button to your site. For example are you using a content management system or hosted service? Best, @themattharris On Jun 23, 2011, at 10:20, mire...@fortheloveofcakes.ca mire...@fortheloveofcakes.ca wrote: hi

Re: [twitter-dev] Using xAuth in N8 (HELP)

2011-06-23 Thread Georgooty varghese
Hi, Actually your problem is not mentioned here. A list of Twitter OAuth libraries are available at http://dev.twitter.com/pages/libraries. You can start with twitter functionality integration using javasript twitter client library. Regards, George On Fri, Jun 24, 2011 at 12:56 AM, Victor

Re: [twitter-dev] How to autologin to twitter by providing the username and password using API?

2011-06-23 Thread Karthikeyan P
For example i have custom twitter icon in my application and when i am adding this icon to the application, i have also added the www.twitter.com, username,password. So when i am clicking the icon it takes me to the twitter site and auto fills the username and password. and logins and shows me the

SOLVED Re: [twitter-dev] Needs object from desktop application ?

2011-06-23 Thread Ari Endo
Dear Matt, Your question solved my problem. Actually, the signature itself and signature part in authorization header were different! I have urlencoded the signature and again urlencoded the authorization header. As a result, signature was urlencoded twice which came different from once

[twitter-dev] all xauth access token revoke after oauth

2011-06-23 Thread Shinichi Fujikawa
Hello! Was the problem that all access token of the xauth does revoke with the same consumer key after re-login oauth corrected today? It is different from yesterday's operation. -- Shinichi Fujikawa http://movatwi.jp -- Twitter developer documentation and resources: