-
Oct 21st, 2011, 02:41 AM
#1
How to get access_token programmatically
I have a mobile application that interacts via a JSON API with the server. When users register on the app, I would like the API to register and authorize user in 1 step instead of 2 seprate calls one to register and the other to /oauth/authorize. Is there a way to programatically authroize and return oauth2 access and refresh tokens from a signup controller?
-
Oct 22nd, 2011, 06:48 AM
#2
There are two ways (or three) to get an access token in one call to the auth service, both (all) are defined in the spec. One is the password grant type, which is OK if your authentication scheme is username/password, and the other is the implicit grant type, which can be used to get authentication, approval and an access token in one go. Spring Security OAuth added support for implicit grants last week, and we think that is the best route to take, since it doesn't make any assumptions about the authentication mechanism. But to use it to get an access token in a single call you still need to do some work to intercept the call in a custom filter and make the authentication from your request parameters before the /authorize endpoint sees the request. We will probably add something like that as a filter in the framework eventually, but right now it is all up for discussion (since the spec doesn't define this behaviour, we just think it is useful).
-
Oct 25th, 2011, 02:36 PM
#3
Thank you for answering. I am using "username/password authentication scheme" for this. Could you expand a bit more on how to "make the authentication from your request parameters before the /authorize endpoint sees the request"?
-
Oct 26th, 2011, 06:01 AM
#4
It depends on your application (nothing to do with OAuth). You can write a filter that intercepts /authorize and grabs username/password from the incoming request, authenticates and sets up the Spring SecurityContext *before* the OAuth2 endpoint gets to process the request. You can't use the regular Spring filter to do that because it will try and do a redirect after successful authentication, but you can use the existing AuthenticationManage that you have configured already.
-
Oct 26th, 2011, 02:13 PM
#5
In my use case, user is registering to the service.. posting username/password to a signup controller. The controller validates inputs, creates new user and sets up the Spring SecurityContext authenticating the user. If signup successful, I would like to return access and refresh tokens. The solution I thought of first was to use RestTemplate.postForLocation or Jersey Client to invoke oauth/authorize endpoint from inside signup controller with username/password just created, parse response and return it.
Is there a better solution?
-
Oct 27th, 2011, 05:49 AM
#6
I would say that if you are returning access_tokens from endpoints not defined by the spec, then you can do whatever you like. I misunderstood the original question, though, sorry. You can't really offer a user an access_token without knowing what client it is for. If you have some reasonable way to know that (e.g. there is only one client) then I guess all you need is to call the OAuth2ProviderTokenServices to get your token during the registration.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules