I created a sample Spring Boot service to obtain an access token from UAA. I used the same connection details to successfully obtain a token with Postman.
I set the following properties in my application.yml file: security.oauth2.client:
clientId: clientSecret: accessTokenUri: userAuthorizationUri: tokenName: grant-type: id:
My service has one REST endpoint, which obtains a token. When I hit the end point, I get the following error:
Unable to obtain a new access token for resource 'ingestor'. The provider manager is not configured to support it.
Do I need any additional certificates or settings in my service to obtain a token from a service? I am following some of the sample code from the blog post below:
https://blog.altoros.com/using-predix-time-series-in-a-spring-boot-app.html
Answer by Rupinder Gron · Feb 12, 2018 at 02:45 PM
Here the link for tutorial that answers your question: link text
Spring Boot app with UAA (and SSO) integration example/tutorial/seed 4 Answers
backend application UAA security 4 Answers
Problem in connectiong to postgres database 2 Answers
Validate the token using UAA Url 4 Answers
ACS spring security extensions and UAA 2 Answers