- スタート アップ ガイド
- コード化されたAppsを使用する
- Studio Web のコード化された Apps
- コード化されたアクション Apps
デプロイ済みのAppsのリンクを他のユーザーと共有する際のアクセス エラーのトラブルシューティングなど、コード化されたAppsに関するよくある質問。
共有とアクセス
「ユーザーはどの組織にも存在しません」というメッセージが表示されるのはなぜですか。コード化されたアプリのリンクへのサインイン時にエラーが発生する
このエラーは、コード化されたアプリのリンクを共有したユーザーが、コード化されたアプリがデプロイされている組織のメンバーでない場合に表示されます。
この問題を解決するには、以下の手順を実行します。
- コード化されたアプリの作成者または組織管理者として、アプリがデプロイされている組織にユーザーを招待します。
- 招待されたユーザーとして、招待を承諾し、その組織にサインインします。
ユーザーが組織の一部になると、コード化されたアプリにサインインできるようになります。
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.