Re: [twitter-dev] Use of OAuth in Xcode to use twitter API

2011-01-18 Thread Evadne Wu
Try MGTwitterEngine, which is an all-rounded solution, that also supports oAuth if I recall correctly. Or write your own library. :) Evadne On Jan 17, 2011, at 14:06, sangeeta katvate wrote: Hello, For using OAuth consumer key, consumer secret etc. do we have to use OAuth Library. If

Re: [twitter-dev] Incorrect signature

2011-01-18 Thread Evadne Wu
When making a base string, you put POST variables, HTTP query parameters, and oAuth parameters all in the bucket, sort them alphabetically, and encode all of them. So, the count needs to be in the base string (if I am recalling correctly). Personally finding http://quonos.nl/oauthTester very

Re: [twitter-dev] Error Domain=HTTP Code=401 The operation couldn’t be completed. (HTTP error 401.)

2011-03-09 Thread Evadne Wu
Stale token or bad API key? Can you post your code somewhere so we can take a look? ;) Thanks, Evadne On Feb 27, 2011, at 08:09, MFK wrote: Hey there! While working on an assignment for school using the MGTwitter engine in an iOS application, I started getting the error above. I'm

Re: [twitter-dev] Re: web app with mobile clients

2011-03-12 Thread Evadne Wu
Do you mean: “I am making a mobile Twitter app that wraps around a locally-ran Web app. Is this possible?” — If that is the case I think it’s difficult at best. -ev On Mar 12, 2011, at 14:15, Bess wrote: Can't help much b/c I don't understand what you are trying to do. On Mar 11, 4:57

Re: [twitter-dev] xAuth

2011-04-23 Thread Evadne Wu
Hello Bess, Is it indeed not working? Tried TwURL [1]? It’s generally not a really good idea to share API keys / secrets, though, as it’s also rate-limited… [1]: https://github.com/marcel/twurl -ev On Apr 23, 2011, at 15:22, Bess wrote: Hi Twitter API How can I request to extend my

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

2011-06-26 Thread Evadne Wu
I am pretty sure you don’t want to use any synchronous requests, though. Better make an asynchronous one, and handle delegate method callbacks when they finish. Otherwise, if network flakes out, it can easily clog up everything for a minute or so, plus it’s just bad to write network code that