This is a topic in Troubleshooting and Bug Reports

External Basecamp Login

 
Avatar phillipzelnar 1 post

Hey everyone,

We had our site setup to allow clients to login to basecamp via a flash client login which posts “user_name” and “password” variables to “http://50000ft.clientsection.com/login/authenticate”. However, we’ve just noticed that recently the login has stopped working and returns “The username and/or password you entered is invalid.” Any ideas as to why this stopped working?

To check out the frontend see “Client Login” at http://www.50000feet.com

Thanks!

 
Avatar Jason Fried Administrator 1113 posts

All logins are SSL now so you may need to adjust to use https instead of http.

 
Avatar kgd111 1 post

Where can I find example code on how to setup to allow clients to login to basecamp via a flash client login. Exactly like: http://www.50000feet.com

Thanks!

 
Avatar 3stripe 33 posts

Using AS3

var vars:URLVariables = new URLVariables();
vars.user_name = _usernameField.text;
vars.password = _passwordField.text;

var urlRequest:URLRequest = new URLRequest("https://basecamp.clientsection.com/login/authenticate");
urlRequest.data = vars;
urlRequest.method = URLRequestMethod.POST;

navigateToURL(urlRequest);

Signup or login to post a reply.