Nhật ký các request gửi đi qua Feign client.
| # | Nội dung | Thời gian |
|---|---|---|
| 1 |
curl -X GET \
'https://api.example.com/users' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json'
|
2025-07-10 15:22:45 |
| 2 |
curl -X POST \
'https://auth.service.internal/login' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"id":2, "name":"Item 2", "active":true}'
|
2025-07-10 15:17:45 |
| 3 |
curl -X PUT \
'https://payment.service.local/transactions' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"id":3, "name":"Item 3", "active":true}'
|
2025-07-10 15:12:45 |
| 4 |
curl -X DELETE \
'https://inventory.service/api/products/42' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json'
|
2025-07-10 15:07:45 |
| 5 |
curl -X GET \
'https://external.api.io/search?q=laptop' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json'
|
2025-07-10 15:02:45 |