OAuth uses JWTs as the client's authentication method. The IEFT document clearly states Using JWTs for Client Authentication
JWTs transfer Token using the new definition
Authorization: Bearer <token>
That’s the relationship. If your client needs to call server resources, it should store the obtained token in the above request header. Your understanding is correct.
OAuth uses JWTs as the client's authentication method. The IEFT document clearly states Using JWTs for Client Authentication
JWTs transfer Token using the new definition
That’s the relationship. If your client needs to call server resources, it should store the obtained token in the above request header. Your understanding is correct.