Reputation: 3
I'm new to spring boot and want to build an application using a REST third party API, but I'm not sure how to go about it as I can't seem to find any tutorials online that use a third party api.
Upvotes: 0
Views: 13203
Reputation:
Adding to the answer by @Dean, I would suggest if you are looking to build a quick integration with 3rd party API, you should also check Spring Cloud Open Feign project. It generates API clients for you, so you need not worry about writing RestTemplates by yourself.
Upvotes: 1