# การออกแบบ REST API (Go) > หลักการ REST, การกำหนดเวอร์ชัน, การแบ่งหน้า, การกรอง, HATEOAS, รหัสสถานะ, OpenAPI/Swagger - 20 คำถามสัมภาษณ์ - Mid-Level - [คำถามสัมภาษณ์: Go](https://sharpskill.dev/th/technologies/go/interview-questions.md) ## 1. หลักการพื้นฐานของ REST คืออะไร? **คำตอบ** REST อิงตามหลักการของการแสดงทรัพยากรที่เข้าถึงได้ผ่าน URI ที่ไม่ซ้ำกัน แต่ละทรัพยากร (user, product, order) มี URI และสามารถจัดการผ่าน HTTP verb มาตรฐาน (GET, POST, PUT, DELETE) ได้ แนวคิดที่เน้นทรัพยากรนี้ช่วยให้เกิดสถาปัตยกรรมที่ขยายขนาดได้และแยกส่วน โดยเซิร์ฟเวอร์ไม่จัดเก็บสถานะเซสชันของไคลเอ็นต์ ## 2. ควรใช้เมธอด HTTP ใดสำหรับการอัปเดตทรัพยากรทั้งหมดแบบ idempotent? **คำตอบ** PUT เป็น idempotent และแทนที่ทรัพยากรทั้งหมด การเรียก PUT หลายครั้งด้วยข้อมูลเดียวกันให้ผลลัพธ์เหมือนกับการเรียกครั้งเดียว ในทางกลับกัน POST ไม่ใช่ idempotent (จะสร้างทรัพยากรหลายรายการ) PATCH ทำการอัปเดตบางส่วน และ DELETE ลบทรัพยากร ความเป็น idempotent ของ PUT รับประกันความปลอดภัยในการ retry เมื่อเกิดข้อผิดพลาดเครือข่าย ## 3. ควรส่งคืนรหัส HTTP ใดหลังจากสร้างทรัพยากรใหม่สำเร็จ? **คำตอบ** รหัส 201 Created บ่งบอกว่าทรัพยากรถูกสร้างสำเร็จ มันมาพร้อมกับ header Location ที่ชี้ไปยัง URI ของทรัพยากรใหม่ รหัส 200 OK ทั่วไปเกินไปสำหรับการสร้าง 204 No Content ใช้เมื่อไม่มี body ตอบกลับ และ 202 Accepted บ่งบอกการประมวลผลแบบอะซิงโครนัสที่ยังไม่เสร็จสมบูรณ์ ## มีอีก 17 คำถาม - ความแตกต่างสำคัญใดที่แยก REST API ออกจาก RPC API? - หลักการ statelessness ใน REST หมายความว่าอย่างไร? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Go อื่นๆ - [พื้นฐาน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-basics.md): 25 คำถาม, Junior - [โครงสร้างข้อมูล Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-data-structures.md): 20 คำถาม, Junior - [อินเทอร์เฟซใน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-interfaces.md): 18 คำถาม, Junior - [การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/go/interview-questions/error-handling.md): 20 คำถาม, Junior - [พื้นฐาน Goroutine](https://sharpskill.dev/th/technologies/go/interview-questions/goroutines-basics.md): 20 คำถาม, Junior - [Channels](https://sharpskill.dev/th/technologies/go/interview-questions/channels.md): 22 คำถาม, Junior - [Go Modules](https://sharpskill.dev/th/technologies/go/interview-questions/go-modules.md): 18 คำถาม, Mid-Level - [เซิร์ฟเวอร์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-server.md): 24 คำถาม, Mid-Level - [ไคลเอนต์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-client.md): 18 คำถาม, Mid-Level - [การเข้ารหัส JSON](https://sharpskill.dev/th/technologies/go/interview-questions/json-encoding.md): 20 คำถาม, Mid-Level - [Database/SQL](https://sharpskill.dev/th/technologies/go/interview-questions/database-sql.md): 22 คำถาม, Mid-Level - [แพ็กเกจ context](https://sharpskill.dev/th/technologies/go/interview-questions/context-package.md): 20 คำถาม, Mid-Level - [Testing](https://sharpskill.dev/th/technologies/go/interview-questions/testing.md): 22 คำถาม, Mid-Level - [รูปแบบ Concurrency](https://sharpskill.dev/th/technologies/go/interview-questions/concurrency-patterns.md): 24 คำถาม, Mid-Level - [ไพรมิทีฟการซิงโครไนซ์](https://sharpskill.dev/th/technologies/go/interview-questions/sync-primitives.md): 22 คำถาม, Mid-Level - [เฟรมเวิร์กเว็บ Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-web-frameworks.md): 20 คำถาม, Mid-Level - [gRPC](https://sharpskill.dev/th/technologies/go/interview-questions/grpc.md): 22 คำถาม, Mid-Level - [Reflection](https://sharpskill.dev/th/technologies/go/interview-questions/reflection.md): 20 คำถาม, Senior - [การจัดการหน่วยความจำ](https://sharpskill.dev/th/technologies/go/interview-questions/memory-management.md): 24 คำถาม, Senior - [การเพิ่มประสิทธิภาพการทำงาน](https://sharpskill.dev/th/technologies/go/interview-questions/performance-optimization.md): 22 คำถาม, Senior - [Generics](https://sharpskill.dev/th/technologies/go/interview-questions/generics.md): 20 คำถาม, Senior - [Go Design Patterns](https://sharpskill.dev/th/technologies/go/interview-questions/design-patterns.md): 24 คำถาม, Senior - [Microservices](https://sharpskill.dev/th/technologies/go/interview-questions/microservices.md): 24 คำถาม, Senior - [ความปลอดภัยและการยืนยันตัวตน](https://sharpskill.dev/th/technologies/go/interview-questions/security-authentication.md): 24 คำถาม, Senior - [Docker & Containerization](https://sharpskill.dev/th/technologies/go/interview-questions/docker-containerization.md): 20 คำถาม, Senior - [Kubernetes Basics](https://sharpskill.dev/th/technologies/go/interview-questions/kubernetes-basics.md): 22 คำถาม, Senior - [Go ขั้นสูง](https://sharpskill.dev/th/technologies/go/interview-questions/advanced-go.md): 20 คำถาม, Senior - [การพัฒนา CLI](https://sharpskill.dev/th/technologies/go/interview-questions/cli-development.md): 20 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/go/interview-questions/rest-api-design