Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
สำหรับวัตถุประสงค์ในการรับรองความถูกต้องของ JSON API พารามิเตอร์ต่อไปนี้สามารถโพสต์ / ผนวกเข้ากับแต่ละ URL ของ JSON API:
Example:
ตัวอย่าง:
สมมติว่าชื่อผู้ใช้และรหัสผ่านที่ต้องการคือ "user1" และ "password1" ตามลำดับเราสามารถโพสต์ชื่อผู้ใช้และรหัสผ่านไปยัง JSON API โดยใช้สคริปต์ jQuery ต่อไปนี้
<script> $(document).ready(function(){ $.ajax({ type: "POST", url: 'http://localhost:8080/jw/web/json/workflow/assignment/list/pending', data: { j_username : 'user1', j_password : 'password1' }, success: function(res) { console.log(res) }, dataType: "json" }); }); </script>
If you prefer to use hashed password, you can use the following script.
หากคุณต้องการใช้ hashed password คุณสามารถใช้สคริปต์ต่อไปนี้
Please note that the support on Hashed Password is based on the Directory Manager you are using. Some Directory Manager Plugin may not supporting this type of authentication method.
The format and hashing method may vary for each Directory Manager as well.
โปรดทราบว่าการสนับสนุนรหัสผ่านที่แฮชจะขึ้นอยู่กับตัวจัดการไดเรกทอรีที่คุณใช้งานอยู่ ปลั๊กอินตัวจัดการไดเรกทอรีบางตัวอาจไม่สนับสนุนวิธีการรับรองความถูกต้องประเภทนี้
รูปแบบและวิธีการแฮชอาจแตกต่างกันสำหรับแต่ละตัวจัดการไดเรกทอรีเช่นกัน
<script> $(document).ready(function(){ $.ajax({ type: "POST", url: 'http://localhost:8080/jw/web/json/workflow/assignment/list/pending', data: { j_username : 'user1', hash : 'D012B772672A55A0B561EAA53CA7734E' }, success: function(res) { console.log(res) }, dataType: "json" }); }); </script>
To use it, set a Master Login Username and Master Login Password under System Settings > General Setting. By setting these values, a different user can be specified by passing in the "loginAs" parameter.
เมื่อการรับรองความถูกต้องโดยใช้พารามิเตอร์คุณจะได้รับอนุญาตให้ใช้ข้อมูลรับรองหลักเพื่อเข้าสู่ระบบในฐานะผู้ใช้รายอื่นกับกิจกรรมเวิร์กโฟลว์ประสิทธิภาพ
หากต้องการใช้งานให้ตั้งค่าชื่อผู้ใช้เข้าสู่ระบบหลักและรหัสผ่านเข้าสู่ระบบหลักภายใต้ System Settings > General Setting โดยการตั้งค่าเหล่านี้ผู้ใช้ที่แตกต่างกันสามารถระบุได้โดยผ่านในพารามิเตอร์ "loginAs"
Please note that only enable this when it is necessary. Leaking of your Master Credential will allows others to performs all the unwanted JSON API calls.
โปรดทราบว่าเปิดใช้งานสิ่งนี้เฉพาะเมื่อจำเป็นเท่านั้น การรั่วไหลของข้อมูลรับรองหลักของคุณจะช่วยให้ผู้อื่นทำการเรียก JSON API ที่ไม่ต้องการทั้งหมด
Assuming the master login username and master login password is "master" and "master" respectively, the master login hash will be "E505CF727D214A68CB03DA25DA978500".
The following example showcases how to use a Master Credential to login as "user1".
สมมติว่าชื่อผู้ใช้ล็อกอินหลักและรหัสผ่านล็อกอินหลักคือ "master" และ "master" ตามลำดับแฮชการล็อกอินหลักจะเป็น "E505CF727D214A68CB03DA25DA978500"
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงวิธีการใช้ข้อมูลรับรองหลักเพื่อเข้าสู่ระบบในฐานะ "user1"
<script> $(document).ready(function(){ $.ajax({ type: "POST", url: 'http://localhost:8080/jw/web/json/workflow/assignment/list/pending', data: { j_username : 'master', j_password : 'master', loginAs : 'user1' }, success: function(res) { console.log(res) }, dataType: "json" }); }); </script>
Using master login hash:
การใช้แฮชล็อกอินหลัก:
<script> $(document).ready(function(){ $.ajax({ type: "POST", url: 'http://localhost:8080/jw/web/json/workflow/assignment/list/pending', data: { j_username : 'master', hash : 'E505CF727D214A68CB03DA25DA978500', loginAs : 'user1' }, success: function(res) { console.log(res) }, dataType: "json" }); }); </script>
ตั้งแต่ V4 Joget Workflow ได้รับการสนับสนุน Basic HTTP Authentication ในการรับรองความถูกต้องของ JSON API คุณสามารถส่งหนังสือรับรองในส่วนหัวได้
ตัวอย่าง:
สมมติว่าชื่อผู้ใช้และรหัสผ่านที่ต้องการคือ "user1" และ "password1" ตามลำดับเราสามารถตั้งค่าหัวข้อ Auth พื้นฐานเป็น JSON API โดยใช้สคริปต์ jQuery ต่อไปนี้
<script> $(document).ready(function(){ $.ajax({ type: "POST", url: 'http://localhost:8080/jw/web/json/workflow/assignment/list/pending', beforeSend: function (xhr) { xhr.setRequestHeader ("Authorization", "Basic dXNlcjE6cGFzc3dvcmQx"); }, success: function(res) { console.log(res) }, dataType: "json" }); }); </script>