compiler.UserInfo
説明
例
デスクトップ ユーザーの詳細の取得
MATLAB コマンド プロンプトで、次を実行します。
user = compiler.UserInfo()
user = UserInfo with properties: UserID: 'someid' DisplayName: <missing> Groups: <missing> Domain: 'SOME_DOMAIN'
サーバー上にある userinfo.json
ファイルからのユーザーの詳細の取得
MATLAB Web App Server 上の webapps_private
フォルダーに userinfo.json
ファイルを作成します。
{
"version": "1.0.0",
"userInfo.doc": "Property values to be fetched during login from IdP",
"userInfo": {
"UserID": "upn",
"DisplayName": "displayName",
"Groups": "groups",
"LastName": "surname",
"Email": "mail"
},
"appAccess.doc": "Policy for allowing access to user properties within an app or group of apps",
"appAccess": {
"BloodPressure": ["UserID","Email"],
"Mortgage": ["UserID","LastName"],
"Mystery": ["UserID","Email","WebAppsRole","WebAppsDisplayName"]
}
}
compiler.UserInfo
を使用して、アプリをカスタマイズします。function startupFcn(app) try user = compiler.UserInfo(); catch me error(me.message); return end if ~ismissing(user.UserID) % customizing app code end if isprop(user, 'Email') % customizing app code end
出力引数
user
— ログインしたユーザーの詳細
compiler.UserInfo
オブジェクト
ログインしたユーザーの詳細。compiler.UserInfo
オブジェクトとして返されます。
バージョン履歴
R2022a で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)