[twitter-dev] Re: If you had rate limits reset issues today you should be ok now

2010-07-11 Thread janole
At least one of my users is still having problems with the rate
limiting bug:

User @ErGandolero is experiencing a "API Rate Limit Error" when
connecting directly via WLAN or GPRS (but not when using my proxy.)

Can you check this? Do you need any more information?

His second account @582saD is apparently working fine. Same
application ("Gravity"), same phone, same time.

Thanks,
o...@mobileways.de / @janole / Gravity Twitter Client for Symbian S60

On 9 Jul., 02:40, themattharris  wrote:
> Those of you who were having rate limit reset issues today (Thursday
> 8th July) should be ok now. If not let us know by replying to this
> message letting us know:
>
> * The IP of the computer which is making the requests
> * A username you are making requests for
> * The time you tried to make the request
> * The request you were trying to make
> * Any response headers you received
>
> Thanks
>
> Matt Harris
> Developer Advocate, Twitterhttp://twitter.com/themattharris


Re: [twitter-dev] Re: API For Login

2010-07-11 Thread Mudassir Qadeer
Hey David,

Thank you so much for taking out time to help me in this. I really
appreciated that

On Sat, Jul 10, 2010 at 7:46 PM, David  wrote:

> Hey SoccerNation,
>
> I think OAuth Login is what you're looking for, and docs for ASP are
> here:
>
> http://dev.twitter.com/pages/oauth_libraries under .NET:
>
> I only have experience with the PHP and Python libraries, but this one
> looks promising: http://code.google.com/p/oauth-dot-net/
>
> Feel free to ping me if you need any help.
>
> On Jul 9, 2:29 pm, SoccerNation  wrote:
> > Hey Guys,
> >
> > I am trying to build an API that would help me build an application
> > wherein the user can log onto twitter from my website. Its kinda
> > similar to the "Facebook Connect" Application and I am trying to make
> > that in Classical ASP. Any help / ideas would be hugely appreciated.
> >
> > PS: I am not talking about the twitter thing that would lead to my
> > website twitter account which would allow the users to look into the
> > tweets.
>


[twitter-dev] Edit application, mandatory callback url

2010-07-11 Thread Juha Palomäki
1) Create application with app type "client"
2) Go to edit application, change the type to "browser"
3) Click save

It seems to be that the changes are not saved, unless you also specify
the callback url.

Somekind of error message would be appreciated in this case, as it is
not obvious that the callback url is mandatory.

br, Juha


[twitter-dev] Re: request token- REST client

2010-07-11 Thread Jacky

It might be a good idea to be able to use this REST client for all
commands as a test benchmark for Twitter API calls(just a thought)...
(I have not tested much on this yet, I am just looking at it)...

https://addons.mozilla.org/en-US/firefox/addon/9780/

Shob


On Jul 8, 1:22 pm, Jacky  wrote:
> Instead I launched it through a browser and I am all ok.
>
> (P.S. Incidental, but,  on my previous post I made a typo in the post,
> i.e.,not the very first string, but the second string and it already
> has the Oauth in front already and that is the string)
>
> Thanks though,
> Regards,
> Shob
>
> On Jul 7, 8:07 am, Matt Harris  wrote:
>
> > Hi Shob,
>
> > We strongly recommend you use a library for handling OAuth with Twitter
> > until you are comfortable with how OAuth works. For VB I know of at least
> > one library called TwitterVB:http://twittervb.codeplex.com/
>
> > This will do the OAuth heavy lifting for you so you can develop an
> > application for use with Twitter quickly. If you then want to roll your own
> > solution you could use the TwitterVB library to compare to the results you
> > are getting from your function.
>
> > Hope that helps,
> > Matt
>
> > On Tue, Jul 6, 2010 at 7:10 AM, Jacky  wrote:
>
> > > Hullo,
>
> > > POST&https%3A%2F%2Fapi.twitter.com%2Foauth
> > > %2Frequest_token&oauth_callback%3Doob%26oauth_consumer_key
> > > %3DhUMUUZO3Zx9zNzJ9DghcA%26oauth_nonce
> > > %3DDA39A3EE5E6B4B0D3255BFEF95601890AFD80709%26oauth_signature_method
> > > %3DHMAC-SHA1%26oauth_timestamp%3D1277424969%26oauth_version%3D1.0
>
> > > and
>
> > > Oauth oauth_callback="oob",
> > > oauth_consumer_key="hUMUUZO3Zx9zNzJ9DghcA",
> > > oauth_nonce="DA39A3EE5E6B4B0D3255BFEF95601890AFD80709",
> > > oauth_signature_method="HMAC-SHA1", oauth_timestamp="1277424969",
> > > oauth_version="1.0", oauth_signature="%2Ff8P1dS6QVQnYCIc10kD1%2Bm2DkI
> > > %3D"
>
> > > using
>
> > >  objhttp.Open "POST", "https://api.twitter.com/oauth/request_token";,
> > > False
>
> > >  objhttp.setRequestHeader "Content-type", "application/x-www-form-
> > > urlencoded"
> > >      objhttp.setRequestHeader "Authorization", strsend
> > > objhttp.send("")
>
> > > Not working, how can I see the stream that is being loaded...or debug
> > > this...
> > > and strsend is "Oauth " and appended by the very first string up on
> > > top in this email
>
> > > Cant see the problem...
>
> > > Please help, if you can see anything outright off or wrong...
>
> > > Regards,
> > > Shob
>
> > --
>
> > Matt Harris
> > Developer Advocate, Twitterhttp://twitter.com/themattharris


[twitter-dev] Can not tweet to e.g. #Studentenjob anymore

2010-07-11 Thread microcosmic
Hello there.

Since Friday I am not able to send tweets to e.g. #Studentenjob or
#Nebenjob anymore. I found out that it is not possible to send tweets
to any #... for our twitter account.

What can I do? Is there an error in our program we use?

Thanks in advance.

Regards,

Michael


[twitter-dev] Re: Python Twitter GetLastStatus

2010-07-11 Thread blabla
oh thank you David! This is great solution. I will try :)

On Jul 11, 4:48 am, David  wrote:
> Hey blabla,
>
> You'll want to look at:http://dev.twitter.com/doc/get/statuses/user_timeline
> and you can pass a count of 1 to only return the most recent status.
> Be careful entering only a count of 1 though because if their most
> recent status is a new style retweet, it will return nothing.
>
> Best,
> Davidhttp://twitter.com/dtran320
>
> On Jul 10, 3:07 pm, blabla  wrote:
>
> > Hello.
> > I am using python-twitter to make a new app.
> > My app must get last status of authorised user (or not authorised).
> > How can i do this? Twitter API does not have GetLastStatus function.
> > and with GetStatus function I can't do that.
> > pls help me.


[twitter-dev] API for my followers/Friends data...

2010-07-11 Thread Abhi
Hi,

I am using twitter4j-core-2.1.3-SNAPSHOT library. Is there an API to
get all my followers/friends data. i.e.
1. Name
2. Location
3. FavouritesCount()
4. FriendsCount
5. FollowersCount
6. StatusesCount

Thanks
Abhi


[twitter-dev] wating for whitelist confirmation for over a week

2010-07-11 Thread hkimscil
I have been waiting for being whitelisted over a week period. Should I
write Twitter about the confirmation? Is there anyway to check the
status of my request?

Thanks!


[twitter-dev] User protected account privacy - API terms

2010-07-11 Thread Furkan Kuru
I have read the terms of service (https://twitter.com/tos) and api rules.

But it is not clear whether we can publish a protected account's  profile
information as shown in their profile page. (only screen_name, name,
website, bio, follower, friends count) with a proper way as twitter
specifies (i.e twitter icon, screen name)

We will add a filter for protected accounts if we do not have right to
display basic user information for protected users.



-- 
Furkan Kuru


[twitter-dev] Wanted - Open Source software for Social Media Analytics Research Toolkit

2010-07-11 Thread M. Edward (Ed) Borasky
As you probably have seen, I'm building a virtual appliance called the  
Social Media Analytics Research Toolkit. It's a Linux desktop with  
software added for data collection, management and analysis, with the  
data focus on Twitter and analysis focus on natural language  
processing. The appliance is built using SUSE Studio and is a VMware /  
VirtualBox virtual machine image.


If any of you have open source projects relating to Twitter and would  
like to be included, please send me an email off-list or send a tweet  
to @znbeta. The software *must* have an open source license, and my  
preference is for software that's already packaged in the OpenSUSE  
Build Service, but as long as it can be built from source on a Linux  
machine, I'll consider it.


I'm personally mostly using Perl and R, but there are Python and Java  
packages already and I welcome software in other languages - I'll put  
the dependencies in to support them if said dependencies are open  
source. I know there are more open source data management and natural  
language processing packages out there, but right now I want to focus  
on the Twitter stuff.


Incidentally, the final release will *not* take place until the  
Twitter open source oAuth setup is completely documented and tested!  
Nothing I am currently including in the appliance uses oAuth, and  
nothing will until all the bureaucratic human handshaking around oAuth  
is complete.


--
M. Edward (Ed) Borasky
http://borasky-research.net/about-smartznmeb/



Re: [twitter-dev] wating for whitelist confirmation for over a week

2010-07-11 Thread Tim Haines
Ryan posted to this list, or announced it somewhere recently that they would
process them after the world cup finished.  He asked people not to write or
re-request.

Give it another week.

Tim.

On Mon, Jul 12, 2010 at 3:47 AM, hkimscil  wrote:

> I have been waiting for being whitelisted over a week period. Should I
> write Twitter about the confirmation? Is there anyway to check the
> status of my request?
>
> Thanks!


Re: [twitter-dev] Can not tweet to e.g. #Studentenjob anymore

2010-07-11 Thread Pascal Jürgens
Hello Michael,

just an idea:
try to log into the twitter website with your account and see whether it was 
disabled for spam.

Pascal
On Jul 11, 2010, at 17:34 , microcosmic wrote:

> Hello there.
> 
> Since Friday I am not able to send tweets to e.g. #Studentenjob or
> #Nebenjob anymore. I found out that it is not possible to send tweets
> to any #... for our twitter account.
> 
> What can I do? Is there an error in our program we use?
> 
> Thanks in advance.
> 
> Regards,
> 
> Michael