My app allows users to have custom subdomains, as in user1.domain.com. I am integrating various oauth providers, all of which support the ability to authenticate via oauth with a subdomain of the registered application domain. Is there a way this can be done with Foursquare, or if not is there a specific reason subdomains are not allowed?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You should be able to specify whatever callback URL you'd like via https://foursquare.com/oauth

link|improve this answer
1  
I understand that a single callback URL can be set there, however what I am trying to do is accept multiple callbacks on the same domain (but different subdomains). So currently I have my callback URL set to mydomain.com/auth/foursquare/callback. This works fine for requests originating from mydomain.com However users have custom subdomains in our app, so what I am trying to do is allow users to authenticate from user1.mydomain.com/auth/foursquare/callback as well. – mattmueller Feb 7 at 13:32
that's not possible. You'll need to specify any custom behavior/identifiers as URL parameters in the callback. – akdotcom Feb 7 at 20:35
feedback

@Matt, I'm on the same boat as you. I'm facing this for salesforce callback URLs. Did you by any chance find a way around this issue. Please let me know. Thanks.

link|improve this answer
1  
We ended up using cookies to identify users and their appropriate subdomains, and then piping everything through the base domain in terms of oauth. We then redirected the user back to the correct subdomain based on their cookies when the oauth process was complete. Definitely not the most elegant or fun code to write, but it does indeed do the trick. – mattmueller Apr 11 at 11:40
Cool. Thanks Matt. I've did the same thing as well. – Aravind Apr 11 at 13:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.