External Basecamp Login
|
|
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! |
|
|
All logins are SSL now so you may need to adjust to use https instead of http. |
|
|
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! |
|
|
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);
|
