Want to login into Salesforce without credentials. Please follow the below STEPS:
STEPS:-
1) Goto to setup --> Open Developer Console.
2) Goto debug --> Open Execute Anonymous Window --> It will open the pop.
3) Please write the below code in Anonymous window.
String sessionId = UserInfo.getOrganizationId() + '' + UserInfo.getSessionId().SubString(15);
System.debug('$$$$ Session Id ' + sessionId);
4) Click on Execute and filter the debug.
You can see one session Id with Organization Id. Now, we have to copy the debug session Id and create one login URL.
Steps to create Login URL:
1) Copy the Salesforce URL. Please refer the screenshot shown below.
2) Now concatenate the session Id with the salesforce URL and your Session Id Will look like below.
https://d5g000004zfq2eai-dev-ed.lightning.force.com/secur/frontdoor.jsp?sid=00D5g000004zfQ2EAI!AQgAQKzTcnQTifXpRnQ7DgECtk_rv.w9BT5FoPEAmoy_UrgG4HJ6B9YFpQ2LVlmnJhBrYPSf8cI.z5XETJIu_AslhdRb8eCY
Note: You have to add secur/frontdoor.jsp?sid= between salesforce URL and the sessionId.
Now Try to hit the URL, BOOM !! you can login into the salesforce portal.
DEMO :
THANKS GUYS!!!
Comments
Post a Comment
Please Write your comment here.