- Introdução
- Trabalhando com Coded Apps
- Criação e implantação de Apps codificados
- Exemplo de Apps codificados
- Perguntas frequentes
- Apps codificados no Studio Web
- Apps de ação codificados
Perguntas frequentes sobre Coded Apps, incluindo solução de problemas de erros de acesso ao compartilhar links de aplicativos implantados com outros usuários.
Compartilhamento e acesso
Por que um usuário recebe um erro "Usuário não existe em nenhuma organização". erro ao fazer login em um link de aplicativo codificado?
Esse erro aparece quando o usuário com o qual você compartilhou o link do aplicativo codificado não é membro da organização na qual o aplicativo codificado foi implantado.
Para resolvê-lo:
- Como o criador do aplicativo codificado ou um administrador da organização, convide o usuário para a organização onde o aplicativo está implantado.
- Como usuário convidado, aceite o convite e faça login nessa organização.
Assim que o usuário fizer parte da organização, ele poderá fazer login no aplicativo codificado.
Why does authentication fail after redeploying the Coded App if the org name contains _?
For orgs whose name contains an underscore, the Coded App is reachable at both the underscore and hyphen forms of the URL. The hyphen form is recommended because underscores are not valid in hostnames per RFC 952, and network proxies or firewalls that allowlist by hostname may reject the underscore URL.
When an app is redeployed, its uipath:redirect-uri meta tag uses the hyphen form of the hostname. If the app was originally deployed using the underscore URL, accessing it via the underscore URL after redeploy fails authentication, because the redirect URI in the meta tag no longer matches the URL host.
To resolve it, use one of the following options:
- Access the app via the hyphen URL after redeploy.
- Set the redirect URI dynamically in the app code. See Initialize the UiPath SDK for the recommended pattern.