I am using LWC for integration my application. I need to get the Personal Access Token at runtime. Is that possible to get?
Presently, I hardcode Personal Access Token in my LWC application. like this:
Http.setRequestHeader("Authorization", 'Bearer XXXXXXXXXXXXXXX');
I have clientId, ClientSecret, username and password. Can I do auth 2.0 with it?
I am not able to get the Personal Access Token.