Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Chinese | ||||||
---|---|---|---|---|---|---|
|
Table of Contents |
---|
English |
---|
User logs in to external system / identity provider and implicitly gains access to Joget without being prompted to login again. |
Chinese |
---|
用户登录到外部系统,隐式获得对Joget Workflow的访问,而不会再提示重新登录。的访问,而不会再提示重新登录。 |
Thai |
---|
ผู้ใช้ล็อกอินเข้าสู่ระบบภายนอกและเข้าถึง Joget Workflow โดยปริยายโดยไม่ต้องแจ้งให้ลงชื่อเข้าใช้อีกครั้ง |
Chinese |
---|
使用JSON API |
Thai |
---|
ใช้ JSON API |
Using '/web/json/directory/user/sso' JSON API.
Chinese |
---|
使用 '/web/json/directory/user/sso' JSON API. |
Thai |
---|
ใช้ '/ web / json / directory / user / sso' JSON API |
You are allowed to call this method using JSON API Authentication or
Chinese |
---|
您可以使用 JSON API 认证或 |
Thai |
---|
คุณสามารถใช้ JSON API Authentication สำหรับการรับรองความถูกต้องหรือ |
Directly passes the username and password with "username" and "password" parameters respectively shown in following example.
Chinese |
---|
直接传递用户名和密码,分别如下例所示的“用户名”和“密码”参数。 |
Thai |
---|
ส่งชื่อผู้ใช้และรหัสผ่านโดยตรงดังที่แสดงในตัวอย่างพารามิเตอร์ "ชื่อผู้ใช้" และ "รหัสผ่าน" ต่อไปนี้ |
Code Block | ||
---|---|---|
| ||
<script>
$(document).ready(function(){
$.ajax({
type: "POST",
url: 'http://localhost:8080/jw/web/json/directory/user/sso?callback=callbackFunction',
data: {
username: 'admin',
password: 'admin'
},
success: function(res) {
console.log("username (" + res.username + ") is " + ((res.isAdmin !== undefined && res.isAdmin === "true")?"admin":"not an admin"));
},
dataType: "json"
});
});
</script> |
Chinese |
---|
使用基本的Http身份验证和JSON API |
Thai |
---|
ใช้การรับรองความถูกต้อง Http พื้นฐานและ JSON API |
Since V4, Joget is supported Basic HTTP Authentication in JSON API authentication, you can passing the credentials in the header.
Chinese |
---|
自V4以来, 支持Joget Workflow基本HTTP身份验证的JSON API身份验证中,您可以将凭据传递到头中。 |
Thai |
---|
ตั้งแต่ V4 ในการพิสูจน์ตัวตน JSON API ที่สนับสนุนการพิสูจน์ตัวตน HTTP พื้นฐาน Joget Workflow คุณสามารถส่งข้อมูลรับรองไปที่ส่วนหัว |
Example: Assuming the username and password required is "user1" and "password1" respectively, we can set the Basic Auth header to the JSON API using following jQuery script.
Chinese |
---|
示例: 假设所需的用户名和密码分别为“user1”和“password1”,我们可以使用以下jQuery脚本将Basic Auth头设置为JSON API。 |
Thai |
---|
ตัวอย่าง: สมมติว่าชื่อผู้ใช้และรหัสผ่านที่ต้องการคือ "user1" และ "password1" ตามลำดับเราสามารถใช้สคริปต์ jQuery ต่อไปนี้เพื่อตั้งค่าหัวข้อการตรวจสอบขั้นพื้นฐานเป็น JSON API |
Code Block | ||
---|---|---|
| ||
<script>
$(document).ready(function(){
$.ajax({
type: "POST",
url: 'http://localhost:8080/jw/web/json/directory/user/sso',
beforeSend: function (xhr) {
xhr.setRequestHeader ("Authorization", "Basic dXNlcjE6cGFzc3dvcmQx");
},
success: function(res) {
console.log("username (" + res.username + ") is " + ((res.isAdmin !== undefined && res.isAdmin === "true")?"admin":"not an admin"));
},
dataType: "json"
});
});
</script> |
Chinese |
---|
使用JavaScript API |
Thai |
---|
ใช้ JavaScript API |
Includes the jQuery & util.js libraries.
Chinese |
---|
包含jQuery&util.js库。 |
Thai |
---|
มีไลบรารี jQuery & util.js |
Using the AssignmentManager.login method for SSO.
Chinese |
---|
使用AssignmentManager.login方法进行SSO。 |
Thai |
---|
ใช้เมธอด AssignmentManager.login สำหรับ SSO |
Perform actions in callback of successful login.
Chinese |
---|
执行成功登录回调的操作。 |
Thai |
---|
ดำเนินการเรียกกลับเข้าสู่ระบบสำเร็จ |
...
lang | javascript |
---|
...
Please see Joget Low Code Application Platform for G Suite
Please see Joget SSO with Keycloak using SAML.
Please see Joget SSO with Azure Active Directory using SAML.
Please see Joget SSO to Active Directory with Kerberos.
Please see OpenID Connect Directory Manager Plugin.
Please see Joget SharePoint SSO Integration.
Chinese |
---|
以编程方式登录用户 |
Thai |
---|
เข้าสู่ระบบผู้ใช้โดยทางโปรแกรม |
...