#Learn Telepact by Example

Let's learn Telepact the same way we'll use it in real life: by making small, concrete requests and watching the schema explain what is happening.

#Order

#Getting started

  1. 00. Installation

  2. 01. Ping

  3. 02. Schema and fn.add

  4. 03. Data type validation

#Schema

  1. 04. Scalar types

  2. 05. Collection types

  3. 06. Structs

  4. 07. Unions

  5. 08. Functions

  6. 09. Service errors

  7. 10. Headers

  8. 11. Comments

#Opt-in features

  1. 12. Select

  2. 13. Binary

#Mocking an integration

  1. 14. Mock server

  2. 15. Stock mock

  3. 16. Stubs

  4. 17. Verify

#Auth

  1. 18. Auth

#Using Telepact client library code

  1. 19. Minimum Python client

  2. 20. Automatic binary negotiation

#Code generation

  1. 21. Code generation

#Running our own server

  1. 22. Minimum server

  2. 23. Logging

  3. 24. Server auth

  4. 25. Managed auth

  5. 26. Schema evolution

  6. 27. TDD with TestClient

  7. 28. Best practices for server implementers

Next: 00. Installation