Is it possible to disable the UiPath Assistant access request so that UiPath Node.Js does not require human input to re-start it once every 30 days?
Any time I invoke a process from the UiPathRobot.NodeJs page, it requests access to my UiPath Assistant (by clicking allow), I want to get rid of this functionality to preserve the autonomy of the process I have in mind, I don’t want to have to re-allow it every 30 days.
Hey @Steve_Krozer
You need to customize the settings a bit either by increasing the token expiry duration or changing the authentication to windows based.
For your reference - Settings
Hope this helps
Thanks
#nK
Thank you, I didn’t look deep enough in the documentation it seems .
No worries, That’s why we are here to collaborate
Hello, I tried implementing what you mentioned and followed the instructions from the link but it does not work.
I want to disable the consent form, is there any way to do this?
I’d like to add that I created C:\ProgramData\UiPath\Robot JS Add-on\RobotJSAddOn.config, edited the file as in the settings and then edited the parameters like below:
<?xml version="1.0" encoding="utf-8"?><add key="ListenerPort" value="80" />
<add key="PortDiscoveryServiceEndpoint" value="http://127.0.0.1:80" />
<add key="TokenExpiryInDays" value="60" />
<add key="AuthenticationProtocol" value="Custom" />
These settings are not taken in consideration at all… It’s still set at 30 days to expire instead of 60.
Hey @Steve_Krozer
Kindly follow the same format.
<?xml version="1.0" encoding="utf-8"?>
<appSettings>
<add key="ListenerPort" value="2323" />
<add key="PortDiscoveryServiceEndpoint" value="http://127.0.0.1:2323" />
<add key="TokenExpiryInDays" value="30" />
<add key="AuthenticationProtocol" value="Custom" />
</appSettings>
App settings tag is very important
Thanks
#nK
Oh, I had the appsettings tag there too, Idk why it didn’t copy paste all of my code here lol.
Regardless of my last reply, the settings do not apply at all.
I have it inserted the SDK in my HTML file like this:
<script src="/dashboard/javascripts/UiPathRobot.js"></script>
Works like a charm, but the settings file? It doesn’t care about it at all, its like it doesn’t exist.
Besides that, I don’t even know if the settings from the settings file can disable the consent-prompt overlay, the “Open UiPath Robot?” prompt.
The app settings is not working for me as well !
Please create a new thread please, lets try to get help from UiPath.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.