[twitter-dev] Re: Callback url during development

2009-05-30 Thread David M. Wilson
On Apr 28, 4:56 am, Mike Lewis wrote: > It doesn't allow you to sethttp://localhost/orhttp://127.0.0.1as > acallbackURL.  This is rather frustrating because I don't want to have > to make a fake host and make all my developers make the same fake host > on their respective machines as well, just

[twitter-dev] Re: Callback url during development

2009-04-28 Thread Dossy Shiobara
On 4/27/09 11:56 PM, Mike Lewis wrote: It doesn't allow you to sethttp://localhost/ orhttp://127.0.0.1 as a callback URL. This is rather frustrating because I don't want to have to make a fake host and make all my developers make the same fake host on their respective machines as well, just t

[twitter-dev] Re: Callback url during development

2009-04-27 Thread Chad Etzel
You could create a public DNS entry like dev.domain.com => 127.0.0.1 which would only work for people that actually have a dev environment setup on their localhost... not the most elegant solution, but it would work mostly. -chad On Mon, Apr 27, 2009 at 11:56 PM, Mike Lewis wrote: > > It doe

[twitter-dev] Re: Callback url during development

2009-04-27 Thread Mike Lewis
It doesn't allow you to set http://localhost/ or http://127.0.0.1 as a callback URL. This is rather frustrating because I don't want to have to make a fake host and make all my developers make the same fake host on their respective machines as well, just to get something trivial like this to work

[twitter-dev] Re: Callback url during development

2009-04-27 Thread Paul Kinlan
This is going to sound silly, but I had it with a port on the settings page I added http://www.twedaq.com:8080/oauth in to the oauth conf page, and then changed my host file and all worked really well. Paul 2009/4/27 Benjamin Cox > > Unfortunately, I'm working on a dev machine that's doubling

[twitter-dev] Re: Callback url during development

2009-04-27 Thread Benjamin Cox
Unfortunately, I'm working on a dev machine that's doubling as a web server for another small project. I simply cannot run on port 80 in development. Does that mean there is no way I can test oauth integration with Twitter? Would you consider adding the ability to put a port number in the callb

[twitter-dev] Re: Callback url during development

2009-04-26 Thread Paul Kinlan
I managed to set a port on the page when I was doing some google app engine stuff. But saying that my dev server now runs on port 80 on my machine so it isn't a problem much. Paul On 27 Apr 2009, at 06:58, Dimebrain wrote: How are you able to set this up for a non-standard port? HOS

[twitter-dev] Re: Callback url during development

2009-04-26 Thread Dimebrain
How are you able to set this up for a non-standard port? HOSTS file is just for the domain/authority, and you can't specify a port in the callback URL on the settings page? On Apr 23, 7:31 pm, Jochen Kaechelin wrote: > Am 24.04.2009 um 00:29 schrieb Paul Kinlan: > > > Hi, > > > During developmen

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Abraham Williams
This is something else that would be good for a development best practice page on the apiwiki. On Thu, Apr 23, 2009 at 17:47, Phil Nash wrote: > That's a great idea, thanks for sharing! I was just wondering what to do > now that oauth_callback won't work. > > Thanks! > Phil > -- > Phil Nash > >

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Phil Nash
That's a great idea, thanks for sharing! I was just wondering what to do now that oauth_callback won't work. Thanks! Phil -- Phil Nash Web development: http://www.unintentionallyblank.co.uk Musical stylings: http://www.hammervsthesnake.co.uk Twitter: http://twitter.com/philnash On Thu, Apr 23,

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Jochen Kaechelin
Am 24.04.2009 um 00:29 schrieb Paul Kinlan: > Hi, > > During development I tend to modify my hosts file to point the > callback URL domain to my box for instance. This is quite good > because all it affects is my box. > I just had the same idea ... ;-) Works as expected now!!! Thanx >

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Paul Kinlan
Hi, During development I tend to modify my hosts file to point the callback URL domain to my box for instance. This is quite good because all it affects is my box. Paul On 23 Apr 2009, at 23:16, Abraham Williams <4bra...@gmail.com> wrote: The oauth_callback parameter was just disabled d

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Jochen Kaechelin
Am 24.04.2009 um 00:16 schrieb Abraham Williams: > The oauth_callback parameter was just disabled do to security > issues. Currently only the registered callback works. If you need a > different callback location for development set up a second > application. > Ok, then I have to use my d

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Abraham Williams
The oauth_callback parameter was just disabled do to security issues. Currently only the registered callback works. If you need a different callback location for development set up a second application. On Thu, Apr 23, 2009 at 17:12, Jochen Kaechelin wrote: > > > Am 22.04.2009 um 15:37 schrieb A

[twitter-dev] Re: Callback url during development

2009-04-23 Thread Jochen Kaechelin
Am 22.04.2009 um 15:37 schrieb Abraham Williams: > Also when you are building the authorize url to send users to > twitter.com you can add "&oauth_callback=http://localhost/callback"; > and that will override your applications registered callback. > OAuth::Consumer.new("xx", "x

[twitter-dev] Re: Callback url during development

2009-04-22 Thread Abraham Williams
Also when you are building the authorize url to send users to twitter.comyou can add "&oauth_callback= http://localhost/callback"; and that will override your applications registered callback. On Wed, Apr 22, 2009 at 08:23, Jochen Kaechelin wrote: > > Am 22.04.2009 um 15:17 schrieb Abraham Willi

[twitter-dev] Re: Callback url during development

2009-04-22 Thread Jochen Kaechelin
Am 22.04.2009 um 15:17 schrieb Abraham Williams <4bra...@gmail.com>: > you can use localhost or whatever you are using locally as a > callback. you browser is interpreting it and acting. > Ah! Ok! I did not try this. So I only have to edit my registered app settings!! Great, Thanx. > O

[twitter-dev] Re: Callback url during development

2009-04-22 Thread Deborah Boyd
Thanks On Wed, Apr 22, 2009 at 9:17 AM, Abraham Williams <4bra...@gmail.com> wrote: > you can use localhost or whatever you are using locally as a callback. you > browser is interpreting it and acting. > > > On Wed, Apr 22, 2009 at 06:25, Jochen Kaechelin wrote: > >> >> How to you handle the call

[twitter-dev] Re: Callback url during development

2009-04-22 Thread Abraham Williams
you can use localhost or whatever you are using locally as a callback. you browser is interpreting it and acting. On Wed, Apr 22, 2009 at 06:25, Jochen Kaechelin wrote: > > How to you handle the callback url during oauth development? > > I'am just working on a rails app running apache and passen