[twitter-dev] problem with CertificateException

2010-11-13 Thread j2me
Hello everyone.
My last two post was about error in login, but I got no response. On
detail study, I got the following error, seems to me a certificate
problem but not sure.
My error was class named "javax.microedition.pki.CertificateException"
and the reason, it was null.

Any idea how to solve this?

Is this problem with my cell phone or with code?

-- 
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


Re: [twitter-dev] List creation is broken

2010-11-13 Thread Taylor Singletary
You may have problems creating lists without descriptions at the moment --
we're working on a solution for that -- are you having trouble creating
lists with a description included?

Taylor

On Sat, Nov 13, 2010 at 5:06 AM, bitrace  wrote:

> Folks,
>
> List creation is currently broken in the API, from what I can see this
> is causing problems for the new twitter web interface, the twitter
> iphone app and all third party apps that use this feature.
>
> I've noticed this in the last couple of days, but from searching on
> Twitter some users are complaining its been out for nearly a week?
>
> Could someone from Twitter please confirm that you are aware of the
> issue and are working to fix this?
>
> thanks,
>
> Clive
>
> --
> 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 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


Re: [twitter-dev] How to get the web app (itself) to tweet?

2010-11-13 Thread Curious Yogurt
I figured it out.  The trick was to make sure the account you are posting to
is also the account where you register the app (it won't work if you just
have the keys). Then, just take the four keys (see below) and use the
following code:

Twitter.configure do |config|
  config.consumer_key = 'YOUR_CONSUMER_KEY'
  config.consumer_secret = 'YOUR_CONSUMER_SECRET'
  config.oauth_token = 'YOUR_OAUTH_TOKEN'
  config.oauth_token_secret = 'YOUR_OAUTH_TOKEN_SECRET'
end

client = Twitter::Client.new
client.update('Hello, from Twitter Gem!')

On Fri, Nov 12, 2010 at 8:14 PM, Curious Yogurt
wrote:

> I have a Rails 3 app that I would like to tweet certain status reports
> and so on. I am using the Twitter Gem. I have all the API keys and so
> on, and can actually tweet to a logged-in users account. But this
> isn't what I want to do.
>
> I want the app to tweet to its own account, "in the background" so to
> speak. So, when the user does something, the app should tweet to its
> own account (not the user's) "this has been done."
>
> It occurs to me that maybe this isn't possible with oauth.  Is there
> any way to do this? Thank you.
>
> --
> 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 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] Rate limiting and whitelisting when making authenticated calls on a user's behave.

2010-11-13 Thread Orian Marx (@orian)
If I have oauth creds for a user, is there any way to make calls to a
REST endpoint that requires authentication for that user but counts
the rate limiting against a whitelisted account that I own?

For example, if I have a user's oauth creds is there any way I can
fetch their mentions using a whitelisted account and not have it count
against their rate limit? Does this work with IP whitelisting?

-- 
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] List creation is broken

2010-11-13 Thread bitrace
Folks,

List creation is currently broken in the API, from what I can see this
is causing problems for the new twitter web interface, the twitter
iphone app and all third party apps that use this feature.

I've noticed this in the last couple of days, but from searching on
Twitter some users are complaining its been out for nearly a week?

Could someone from Twitter please confirm that you are aware of the
issue and are working to fix this?

thanks,

Clive

-- 
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] How to get the web app (itself) to tweet?

2010-11-13 Thread Curious Yogurt
I have a Rails 3 app that I would like to tweet certain status reports
and so on. I am using the Twitter Gem. I have all the API keys and so
on, and can actually tweet to a logged-in users account. But this
isn't what I want to do.

I want the app to tweet to its own account, "in the background" so to
speak. So, when the user does something, the app should tweet to its
own account (not the user's) "this has been done."

It occurs to me that maybe this isn't possible with oauth.  Is there
any way to do this? Thank you.

-- 
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.twitter.com giving 301 redirect

2010-11-13 Thread Arthur
Hi folks,

I'm seeing an issue where requests sent to search.twitter.com get a
301 redirect, but the redirected URL is identical to the original.

I think this is the exact same issue reported 3 years ago:

http://groups.google.com/group/twitter-development-talk/browse_thread/thread/65e0a0990b120abf

In this case, the library I'm using constructs a Host: header that
includes the port number:  search.twitter.com:80. From testing with
other tools, it appears that if the port number is left off, the
request succeeds.

Any help?

Thanks,
-Arthur




-- 
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


Re: [twitter-dev] Re: Twitter streaming API using oauth with tracks that have spaces?

2010-11-13 Thread Ciaran
On Fri, Nov 12, 2010 at 11:31 PM, dan  wrote:
> By ui-encoding you mean percent-encoding?
I did mean uri-encoding ;) iphone's suck :)
-cj.

-- 
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