[twitter-dev] Re: Single Sign On Using Twitter4j

2010-12-28 Thread Ganesh Sonawane
On Fri, Dec 3, 2010 at 9:22 PM, Ganesh Sonawane ganesha.s...@gmail.comwrote:



 Hi All ,


 I have developed Single Sign on using Twitter4j  Api JAVA ( OAuth
 2.0 framework )  it's working fine. if user allow once my application 
 same user trying access my application through twitter it will ask allow
 again for same user, is there something i missed while coding pls  help me




Thanks  Regards
Ganesha,
9049985361

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Request for whitelisting additional IP address

2010-12-28 Thread Serengeti SocialSnap
Our app, Social Snap was granted whitelisting status back in June,
2010.  This autumn, we added another host machine to the app, and
started trying to get its IP added to our original whitelisting.
After several months receiving no response to several on-line
communications, I located an e-mail address for the Twitter API
(a...@twitter.com), and sent the request via that channel, on 30
November of this year.

Since that date (nearly a month, as of today), we have received no
reply of any sort to these various requests.  Can someone explain if
the add-an-IP process is perhaps inherently much slower that the
original whitelisting request, or is there some other factor at work
here of which we are unaware?

The inability to whitelist our other IP address has now become a
significant impediment in the development and deployment of our
Twitter-based application, Social Snap (TM).

Thanks...

Len Shaefer
Software Development
Serengeti Communications

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] stream API works with some accounts, not others

2010-12-28 Thread MikeJ
I hope this is a simple question. I am writing some code for the
stream API using the tweetstream RubyGem. It works perfectly for my co-
worker and works for me when I use his login, but when I use my own
personal login, or a new login I created just for streaming, it does
not work -- no errors, no limit message, but no tweets are seen. He
suggested that I needed to create at least one app -- maybe that would
register my account as a developer account -- but I tried it and it
didn't change anything. Any suggestions?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Search API and location

2010-12-28 Thread Randomness
I just tried to construct a query that searches for users by location,
as it is registered in the location field of their profiles. I had no
luck and it seems this is not possible. Am I just overlooking
something, or is their another way to find people by location?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] update_profile_background_image - error code 500

2010-12-28 Thread Derlan Lima
I have a problem with update_profile_background_image, sending the
image parameter correctly and get the error 500 Internal Server
Error, it can be?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Can't get any tweet from a particular account using Search Api

2010-12-28 Thread Eduardo Hernandez
I can't get any tweet using 
http://search.twitter.com/search.json?q=cincuentamas,
but I can for my own user and any other account I have tested.
cincuentamas is not even a private account, this user hasn't block
its tweets, but it doesn't return anything whenever I query it. What's
wrong?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: stream API works with some accounts, not others

2010-12-28 Thread Eduardo Hernandez
I have a similar problem. I can't get any tweet using
http://search.twitter.com/search.json?q=cincuentamas, but I can for my
own user and practically every other user in Twitter. And this user
cincuentamas doesn't even have a private account or anything like
that. What's wrong?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: stream API works with some accounts, not others

2010-12-28 Thread MikeJ
I figured out the problem.

The tweetstream RubyGem is using the function URI.encode on passwords.
If you have punctuation in your password like any good, security-
conscious developer would, then tweetstream will make your password
invalid. Also, it will not produce any sort of error -- it will simply
sit and do nothing (which may or may not be due to how the API is
implemented from Twitter's side).

The short-term solution is to simply change your password and make it
URL-safe.


On Dec 28, 3:02 am, MikeJ architeuthis...@gmail.com wrote:
 I hope this is a simple question. I am writing some code for the
 stream API using the tweetstream RubyGem. It works perfectly for my co-
 worker and works for me when I use his login, but when I use my own
 personal login, or a new login I created just for streaming, it does
 not work -- no errors, no limit message, but no tweets are seen. He
 suggested that I needed to create at least one app -- maybe that would
 register my account as a developer account -- but I tried it and it
 didn't change anything. Any suggestions?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: stream API works with some accounts, not others

2010-12-28 Thread MikeJ
I am starting to think this is a bug in the TweetStream RubyGem,
because I am able to track tweets from the command line with curl per
the examples in the stream API docs. So I doubt anyone will have any
insight for me, but I will keep you all updated on my findings just in
case anyone else is running into a similar problem.

Mike

On Dec 28, 3:02 am, MikeJ architeuthis...@gmail.com wrote:
 I hope this is a simple question. I am writing some code for the
 stream API using the tweetstream RubyGem. It works perfectly for my co-
 worker and works for me when I use his login, but when I use my own
 personal login, or a new login I created just for streaming, it does
 not work -- no errors, no limit message, but no tweets are seen. He
 suggested that I needed to create at least one app -- maybe that would
 register my account as a developer account -- but I tried it and it
 didn't change anything. Any suggestions?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Can't get any tweet from a particular account using Search Api

2010-12-28 Thread MikeJ
I tried that query and I get nothing as well. Perhaps that account has
never tweeted, or maybe the issue is you need to be mentioned in a
status not just creating tweets -- I am not yet using the search API
so no clue what it looks for.

On Dec 28, 3:08 pm, Eduardo Hernandez hernandezme...@gmail.com
wrote:
 I can't get any tweet 
 usinghttp://search.twitter.com/search.json?q=cincuentamas,
 but I can for my own user and any other account I have tested.
 cincuentamas is not even a private account, this user hasn't block
 its tweets, but it doesn't return anything whenever I query it. What's
 wrong?

-- 
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: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Search API and location

2010-12-28 Thread L. Mohan Arun
 I just tried to construct a query that searches for users by location,
 as it is registered in the location field of their profiles. I had no
 luck and it seems this is not possible.

Google find twitter users by location
See localtweeps.com

### Mohan ###

-- 
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: 
http://groups.google.com/group/twitter-development-talk