-
Notifications
You must be signed in to change notification settings - Fork 0
Apis
David Ayers edited this page Mar 13, 2020
·
4 revisions
Developing and consuming APIs
When building an API, an important choice is the serialization format for the message payloads. JSON is the default these days, as was XML in the olden days, but there are other alternatives.
- Message Pack - compact binary serialization format
- Protocol Buffers - versionable binary format from Google
Technology
Management