[twitter-dev] Can I do this with OAuth?

2011-05-28 Thread Behi
Hi all, Some apps (e.g. TwitBird for iPad) have a very simple and straightforward authentication process: once a user downloads and runs the app, it asks for his username and password and then it automatically logs in the user, and adds the app to the list of his authorized applications in

Re: [twitter-dev] Ampersand

2011-05-28 Thread Alexander Skwar
Hi. Is the properly encoded when it gets sent to twitter? Sounds like it isn't... -- Alexander Am 28.05.2011 08:06 schrieb R r4eem...@gmail.com: I'm using cocoa and NSUTF8StringEncoding. When I post a sentence that contains the ampersand (), all text that follows is removed from the

Re: [twitter-dev] Can I do this with OAuth?

2011-05-28 Thread Evadne Wu
Hey Behi, It’s XAuth: http://dev.twitter.com/pages/xauth . -ev On May 28, 2011, at 14:05, Behi wrote: Hi all, Some apps (e.g. TwitBird for iPad) have a very simple and straightforward authentication process: once a user downloads and runs the app, it asks for his username and password

Re: [twitter-dev] Ampersand

2011-05-28 Thread Sean Heber
This is OT for this list, but you need to use NSString's -stringByAddingPercentEscapesUsingEncoding: method (or similar) to encode characters correctly for URLs. l8r Sean On May 27, 2011, at 9:10 PM, R wrote: I'm using cocoa and NSUTF8StringEncoding. When I post a sentence that contains

Re: [twitter-dev] Re: New 2 Android twitter app

2011-05-28 Thread Marcio Valenzuela
Plus now I found this :( http://stackoverflow.com/questions/5962526/how-to-connect-twitter-client-application-in-android On Fri, May 27, 2011 at 9:43 PM, marcio quique...@gmail.com wrote: Yes I have. I read it 2x and I just read it again once more. I understand about 25%. But if I use a

Re: [twitter-dev] Will requesting DM access now disable xAuth for my app?

2011-05-28 Thread Andrew W. Donoho
On May 28, 2011, at 00:31 , Ed Finkler wrote: Can I do this, or should I register a new application? Or do I have other options? Just create a test account and use it. Anon, Andrew Andrew W. Donoho Donoho Design Group, L.L.C. a...@ddg.com, +1 (512)

[twitter-dev] oAuth with twitpic or yfrog photo uploads in mobile apps

2011-05-28 Thread Frank Ash
I am having some trouble integrating either yfrog or twitpic into my app. All the others I see are asking for users names and passwords inside the app, and not using oauth. Is it possible to let people post pictures to their stream using one of these services if the application uses only oAuth and

[twitter-dev] TweetDeck technical problem

2011-05-28 Thread Patrick Kennedy
This is not strictly a dev question, but I was hoping others here may be able to suggest or redirect. I have recently started using Bodhi Linux, but I have not been able to get TweetDeck to work on it. Bodhi is based on the Ubuntu distro, but it's a minimalist version, and the user must use

[twitter-dev] Re: oAuth with twitpic or yfrog photo uploads in mobile apps

2011-05-28 Thread Patrick Kennedy
Frank - A lot of the existing examples you see on the Internet use basic oAuth, but these are just old examples, and you must use oAuth. It's possible to make it work - I've made a basic TwitPic prototype, so I know it's doable. (Still working on 4sq tho!) You simple need to master the oAuth

Re: [twitter-dev] Re: New 2 Android twitter app

2011-05-28 Thread marcio
ok I got it...my app was actually client type, but even though its a client native app on android, it has to be browsable for the callback url to work, EVEN THOUGH the callback_URL you configure on dev.twitter.com is just for looks cause you end up redirecting to your app anyway. :) Thx for