link
link

Reputation: 3

Springboot application with 3rd Party API

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

Answers (2)

user4773260
user4773260

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

Dean
Dean

Reputation: 2005

If it is your intention to consume a REST API within your spring boot application then you should look at the Spring RestTemplate.

Here is a tutorial.

Upvotes: 2

Related Questions