0

I'm reading about this OAuth2 but I can't find anything to get my token from JHipster I saw an api to connect to google , facebook... but nothing to JHipster.

My JHipster is already set up and running but i can't find this url/methods.

Does JHipster come with default url to get request and access token? and how can I retrieve that from my android app?

Lucas Bertollo
  • 373
  • 2
  • 5
  • 19
  • Have you seen this? http://stackoverflow.com/questions/28269487/jhipster-oauth-how-can-i-get-the-access-token-via-curl/28278293#28278293 – Rori Stumpf May 16 '15 at 14:16
  • check this here : - http://stackoverflow.com/questions/33692496/jhipster-oauth-how-can-i-get-the-token-via-curl/33793263#33793263 – Rajender Saini Nov 19 '15 at 16:56

1 Answers1

2

It is ​http://localhost:8080/oauth/token

Look at src/main/webapp/scripts/components/auth/provider/auth.oauth2.service.js for more information.

Kevin Tran
  • 36
  • 4