[twitter-dev] Re: Dynamic URLs with oauth return url

2010-09-07 Thread Mark Krieger
Jeff,

All of my 'sites' are under control of one domain, so I just set a
cookie before auth
on any of the sites (with it's url), and then I redirect to the
correct subdomain from my main site
once my main site gets back control (I also do some housekeeping).

I said 'I just set...' but this was fairly complex to get right and to
deal with all situations.

If you are going to many other sites, not under your control, I am not
sure if the cookie
method would work,

I hope someone else has some ideas :)

Mark

On Sep 7, 1:37 am, Jeff Gladnick jeff.gladn...@gmail.com wrote:
 I work forhttp://www.greatdentalwebsites.comand am trying to
 configure the twitter integration to work with the new oauth system.

 The problem is that our users, when granting access, need to be
 redirected back to their own website.  The process works like this

 1) Dentist is onhttp://theirdentalwebsite.comand they click the link
 to let my dental website talk to twitter
 2) They are forwarded to the twitter page, and they click yes
 3) They are directed back to our website,http://www.greatdentalwebsites.com
 to a special return url

 The problem is when they get to #3, I don't know how to determine
 which customer's website to send them back to after that.  All I have
 in the url is their auth token thingy.

 I can think of two ways to solve this:

 1) Pass along an additional url back from twitter somehow so when they
 hit our return url, we have their domain name as a url parameter
 2) Pass the user back to their site in the first place, and handle the
 return from twitter logic there.

 Has anyone else had to deal with similar problems and how was it
 solved?

-- 
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?hl=en


Re: [twitter-dev] Re: Dynamic URLs with oauth return url

2010-09-07 Thread Taylor Singletary
When you provide an oauth_callback on the oauth/request_token step, as
long as you properly encode it, can contain any additional URL
parameters you might want to send back to your server, including
identifying information about the user and context/state that you may
need to carry over.

Taylor

On Tue, Sep 7, 2010 at 10:51 AM, Mark Krieger markskrie...@gmail.com wrote:
 Jeff,

 All of my 'sites' are under control of one domain, so I just set a
 cookie before auth
 on any of the sites (with it's url), and then I redirect to the
 correct subdomain from my main site
 once my main site gets back control (I also do some housekeeping).

 I said 'I just set...' but this was fairly complex to get right and to
 deal with all situations.

 If you are going to many other sites, not under your control, I am not
 sure if the cookie
 method would work,

 I hope someone else has some ideas :)

 Mark

 On Sep 7, 1:37 am, Jeff Gladnick jeff.gladn...@gmail.com wrote:
 I work forhttp://www.greatdentalwebsites.comand am trying to
 configure the twitter integration to work with the new oauth system.

 The problem is that our users, when granting access, need to be
 redirected back to their own website.  The process works like this

 1) Dentist is onhttp://theirdentalwebsite.comand they click the link
 to let my dental website talk to twitter
 2) They are forwarded to the twitter page, and they click yes
 3) They are directed back to our website,http://www.greatdentalwebsites.com
 to a special return url

 The problem is when they get to #3, I don't know how to determine
 which customer's website to send them back to after that.  All I have
 in the url is their auth token thingy.

 I can think of two ways to solve this:

 1) Pass along an additional url back from twitter somehow so when they
 hit our return url, we have their domain name as a url parameter
 2) Pass the user back to their site in the first place, and handle the
 return from twitter logic there.

 Has anyone else had to deal with similar problems and how was it
 solved?

 --
 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?hl=en


-- 
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?hl=en


[twitter-dev] Re: Dynamic URLs with oauth return url

2010-09-07 Thread Jeff Gladnick
I've been unable to do that besides url encoding everything.

I was able to get the cookie (and session var) to work though.

On Sep 7, 1:12 pm, Taylor Singletary taylorsinglet...@twitter.com
wrote:
 When you provide an oauth_callback on the oauth/request_token step, as
 long as you properly encode it, can contain any additional URL
 parameters you might want to send back to your server, including
 identifying information about the user and context/state that you may
 need to carry over.

 Taylor

 On Tue, Sep 7, 2010 at 10:51 AM, Mark Krieger markskrie...@gmail.com wrote:
  Jeff,

  All of my 'sites' are under control of one domain, so I just set a
  cookie before auth
  on any of the sites (with it's url), and then I redirect to the
  correct subdomain from my main site
  once my main site gets back control (I also do some housekeeping).

  I said 'I just set...' but this was fairly complex to get right and to
  deal with all situations.

  If you are going to many other sites, not under your control, I am not
  sure if the cookie
  method would work,

  I hope someone else has some ideas :)

  Mark

  On Sep 7, 1:37 am, Jeff Gladnick jeff.gladn...@gmail.com wrote:
  I work forhttp://www.greatdentalwebsites.comandam trying to
  configure the twitter integration to work with the new oauth system.

  The problem is that our users, when granting access, need to be
  redirected back to their own website.  The process works like this

  1) Dentist is onhttp://theirdentalwebsite.comandthey click the link
  to let my dental website talk to twitter
  2) They are forwarded to the twitter page, and they click yes
  3) They are directed back to our website,http://www.greatdentalwebsites.com
  to a special return url

  The problem is when they get to #3, I don't know how to determine
  which customer's website to send them back to after that.  All I have
  in the url is their auth token thingy.

  I can think of two ways to solve this:

  1) Pass along an additional url back from twitter somehow so when they
  hit our return url, we have their domain name as a url parameter
  2) Pass the user back to their site in the first place, and handle the
  return from twitter logic there.

  Has anyone else had to deal with similar problems and how was it
  solved?

  --
  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?hl=en

-- 
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?hl=en