You need to sign in to do that
Don't have an account?
Adrian-E
Passing Landing Page and Login through URL
Hi,
I need to log users into Salesforce and immediately return the following URL as the first page:
https://ssl.salesforce.com/500/e?isdtp=mn
How can I construct a URL that passes both the username, password and immediately logs the agent into the above URL without any additional clicks?
I need to log users into Salesforce and immediately return the following URL as the first page:
https://ssl.salesforce.com/500/e?isdtp=mn
How can I construct a URL that passes both the username, password and immediately logs the agent into the above URL without any additional clicks?
All Answers
https://ssl.salesforce.com/servlet/servlet.DesktopLoginPage?un=user%40domain.com&pw=theirpassword&startURL=%2F500%2Fe%3Fisdtp%3Dmn&isdtp=mn
Typically you'd go to login.salesforce.com but that url you have directs to the desktop login page so I'd try that first.
The %40 in the un= is the @ symbol formatted for URL. The startURL has also been formatted so it can be passed as a variable.
-Paul
Thanks a million Paul! worked like a charm...
Any chance you would know how to pass other variables through such as cas3 and other CASE fields?
https://login.salesforce.com/?un=USERNAME&pw=PASSWORD&startURL=%2F500%2Fe%3Fisdtp%3Dmn&cas3=John%20Doe
https://login.salesforce.com?un=user%40domain.com&pw=theirpassword&startURL={wherever you want to start}
In the start url, make sure to replace any forward slashes with %2F and any other special characters with their hex equivalents.
You can use this chart for converting characters http://www.asciitable.com/ just put a % sign in front of the hex value you see in the chart.