Reputation: 131
I have one doubt respect REST API response and HTTP2.
If HTTP2 has a binary frame for the TCP layer. Our application should not have to parse this binary response? Or its transparent for all the kinds of format response possible (assets, json, plain text,etc) ?
Upvotes: 2
Views: 172
Reputation: 3491
The binary transport will be completely transparent to your code. It only effects how files get from one end to the other.
Upvotes: 2