Tagged Questions
0
votes
0answers
19 views
How to use Spring OAuth2 redirect URI [duplicate]
how to correctly use a redirect-uri in a Spring OAuth2 client?
I use the following config, which I took from the Tonr example, but it does not work. I get this exception:
...
1
vote
0answers
20 views
What's the right way to separate the Resource Server and the Authorization Server?
Using spring-security-oauth2 to secure my resources against a SSO endpoint that can act as an authorization server. I'm a bit confused when the documentation states:
The provider role in OAuth 2.0 ...
1
vote
0answers
38 views
OAuth2 Spring client error: No redirect URI has been established
I'm trying to set up a Spring OAuth2 client that authenticates to my own provider and resourceserver. Provider and resource server are one application in my case.
I have problems with setting up the ...
0
votes
0answers
36 views
SSO between a PhoneGap app authenticated via OAuth and Spring web site
I am building a PhoneGap app that has a subset of features of an existing Java/Spring web site. When the user tries to access the advanced features, I want to kick them to the web site in an in-app ...
0
votes
0answers
58 views
java.io.NotSerializableException when implementing UserDetailsService
I am working with spring-security-oauth2 and I faced with such exception:
Caused by: java.io.NotSerializableException: com.samsung.diary.security.UserDetailsServiceImpl
at ...
0
votes
1answer
53 views
What does 'login-page=“/login.jsp” login-processing-url=“/login.do”' mean in Spring OAuth2 tonr?
I am working a Oauth 2 implementation project, below is what I found in the configuration file from Spring Oauth2 tonr sample project:
<http ...
3
votes
3answers
192 views
Spring security oauth2 - getting custom data from OAuth2 principal
I have a site that uses Spring security and has users (username & password) and standard form authentication. I allow users to generate a client Id and client secret linked to their account for ...
0
votes
1answer
73 views
Spring oauth2 validate token request
Does oauth2RestTemplate or access token providers support validate token request?
Here is the flow:
Mobile/Web-App authenticated from third party Authentication server
and obtains Access-Token.
...
0
votes
0answers
71 views
Store Facebook access token from app on server-side with Spring
We have the following setup:
Android App
iOS App
Spring backend
App users can create a normal account (email/password credentials) or login with Facebook. Until now we used HTTP Basic ...
0
votes
1answer
67 views
Spring OAuth2 with implicit and password flows
I am trying to setup a project with Spring OAuth 2 using implicit, password and authorization flows.
The problem I have appears when I use the same token endpoint for implicit and the other two, ...
0
votes
0answers
44 views
Spring Security Tonr2 remove application login
I was successfully able to add google as another authenticator in tonr2 example application. But what I'm stuck with is, removing the application's login screen and make use of google as mode of ...
0
votes
0answers
79 views
Exchange resource for access token from oauth 2.0 provider implementing spring security
I have implemented a oauth provider and consumer using spring security. Now the requirement is to remove spring security from the oauth consumer. I'm able to get the access token by exchanging the ...
0
votes
1answer
394 views
Spring Security oauth2, why does my auth/token authenticates CLIENT but returns 404?
EDIT
I've removed the incorrect configuration which I had posted here because I feel there is already enough incorrect/incomplete configurations out there. After a couple of days struggling It got ...
0
votes
0answers
103 views
Spring Security OAuth JSON authorization [closed]
I apologize if my questions seems to be repetitive but I couldn't find an answer. Where can I find a right way to develop OAuth(or OAuth 2) REST backend with Spring Security?Thanx for any help.
0
votes
1answer
55 views
Implement OAuth 2.0 limited capability device flow with Spring Oauth
I have successfully implemented OAuth 2.0 in a grails 2.0 app using Spring Security and latest version of Spring Security Oauth .
But now I want to add to the standar OAuth 2.0 auth flow another flow ...
0
votes
0answers
127 views
Unable to locate Spring NamespaceHandler for XML schema namespace [http://spring-security-oauth.codehaus.org/3.0]
I am integrated Oauth with spring security
this my applicationContext.xml
<beans:beans xmlns="http://www.springframework.org/schema/security"
...
6
votes
1answer
186 views
Customize SpringSecurity OAuth 2 Error Output (unauthorized)
We secure our REST services (for server to server communication, no user involved) with Spring Security OAuth2. However when one tries to access a protected resource in a browser, it will show:
...
0
votes
0answers
37 views
Should we use transaction management over OAuth2 service?
The project I'm working on uses spring-security-oauth2 to build up the OAuth2 provider service. We added an AOP transaction manager at a wrong point, so my job is to correct it. After browsing the ...
4
votes
2answers
600 views
Spring Security & Multipart requests
I have a @Controller protected with Spring Security and OAuth2 in which I am trying to let my users upload a file:
@Controller
@RequestMapping(value = "/api/image")
public class ImageController {
...
1
vote
1answer
254 views
Login with facebook and using oauth 2.0 for authentication of REST api calls
I am using spring framework and REST architecutre in my api. Currently I am authenticating my REST call by sending username and password with every call. And users are stored in my database.
Now I ...
0
votes
1answer
135 views
How to setup OAuth2RestTemplate (Post Updated)
I am not sure if I have OAuth2RestTemplate configured correctly. I am getting the following error when I run the tester class.
INFO: Pre-instantiating singletons in ...
1
vote
1answer
2k views
Spring security oauth 2 simple example
I try to implement my own example based on official tutorial Sparklr2/Tonr2. Everything looks good but when I remove from web.xml in my Tonr2 implimentation, spring security filter I have exeption: ...
2
votes
1answer
418 views
OAuth2 with spring-security - limit REST access by HTTP method
So we've implemented the OAuth2 - client credentials grant between our REST server and a client application server using spring-security . The client can access its resources with the token it gets ...
0
votes
0answers
94 views
Does anyone know how to use SwitchUserFilter in Spring Security OAuth2 project?
As the title says. Does anyone know about it? my feeling is we should implement a custom SwitchUserFilter,upate "Authentication targetUser" to tokenServices with current token?
SwitchUserFilter.java
...
0
votes
1answer
81 views
Spring Security OAuth2 cookies
I have OAuth2 implemented in my app with Spring Security. Currently, it works with the "access_token" request parameter. Where can I add some customization to also accept the token from a cookie?
1
vote
1answer
513 views
Understanding OAuth2 Client credentials flow
I'm trying to understand and implement a client credentials flow between our new REST server and our existing client app. I've setup spring-security OAuth2 like this. From my understanding so far, my ...
5
votes
1answer
996 views
Spring-security context setup for 2-legged (client credentials) OAuth2 server
What's the minimal setup for spring-security OAuth2 if I want to secure a REST server for one client? I don't want to use any unnecessary setup or implement any unnecessary beans. Maybe there's an ...
1
vote
1answer
230 views
Spring-Security OAuth2 setup - unable to locate oauth2 namespace handler
I'm trying to setup our REST server for OAuth2 with spring-security. (The server already supports spring-security without OAuth). Now I tried to follow the sparklr example and added the ...
4
votes
1answer
240 views
OAuth + spring security for internal REST communication
Setup
We're developing a distributed application with Java and Spring where our existing client front end (complete with its own authentication, database, accounts, etc.) uses REST calls to access ...
1
vote
2answers
223 views
How does Grails spring security rememberMe on custom auth?
I use grails spring security with a custom auth method for facebook authentication:
def auth() {
...
}
When I check the cookie in my browser I can see that the cookie lifetime is finished when ...
2
votes
1answer
81 views
What is the difference between org.springframework.security.oauth and org.codehaus.spring-security-oauth?
I am trying to learn Oauth authentication with Spring Security and just found two versions of spring-security-oauth library.
<dependency>
...
0
votes
1answer
535 views
Using Google API with spring-security-oauth2.0
I've searched here a bit but could not find an answer to my issue.
I implement oAuth client with spring-sec-oAuth 2.0 (1.0.0.RC2a). After properly setting the beans.xml, I happily get a valid token ...
1
vote
1answer
168 views
Grails Oauth2 Provider NullPointerException
I’m trying to use Oauth2 in Grails but can’t get it working. When trying to get access point I have NullPointerException.
So more details: Using Spring Security Oauth2 Provider plugin. I have ...
0
votes
0answers
93 views
Spring security oauth to create a web provider
first of all, sorry for my bad english.
I searched here and googled about an answer for this question. I created a sample with spring webservice called rest provider, to add my logic for the clients ...
1
vote
1answer
520 views
No adapter for handler error for oauth2 provider endpoints
I would like to implement OAuth 2.0 for my Spring 3.1 and RESTEasy project. The project is a JSON based REST service. I use Spring Security 3.1 and spring-security-oauth2 version 1.0.0.RC2 (which ...
0
votes
1answer
87 views
Spring Security OAuth2 not building (test fails: TestOAuth2AccessTokenSerializer.writeValueAsStringWithNullScope)
I'm currently trying to build the spring-security-oauth sample apps (for OAuth2), but the test fails (version as of today). Unfortunately there's no issue tracker activated for the project to report ...
2
votes
2answers
302 views
Spring OAuth (OAuth2): How can I get the client credentials in a Spring MVC controller?
In this snippet:
@RequestMapping(method = GET)
public List<Place> read(Principal principal) {
principal.getName();
}
principal.getName() gives me the user identification but I need a way ...
0
votes
2answers
1k views
“Access is denied (user is not anonymous)” with spring-security-oauth2
I'm new to Spring Security and Oauth, and I'm trying to set up a simple example protecting the access to resources in path "/api" with Oauth2. I'm using spring-security-oauth2-1.0.0.RC2. After some ...
0
votes
1answer
264 views
How to implement Openid connect and Spring Security
I am beginner of authentication and authorization but I have to connect to a openid connect provider on my job. I know a little about how to use Spring Security.
First, I got UserInfo object thanks ...
1
vote
1answer
313 views
How can I bypass Grails exception handling, in order to use Spring Oauth2?
I am trying to port an Oauth2 client based on Oauth for Spring Security from plain Java/Spring to Grails, and have run into a problem. The crux of the issue appears to be the fact that the design of ...
0
votes
2answers
524 views
Grails and Oauth2 Spring security
I'm tring to configure ad OAUTH2 provider with grails based on plugin grails-spring-security-oauth2-provider but upgraded to pring-Security-OAuth M6.
I was able to register clients and get ...
0
votes
2answers
298 views
Implementing 2-legged OAuth to get user specific data for use in Javascript
I am diving into OAuth 2.0 to protect my RESTful services. I own the consumer and the provider sides, and therefore do not need the end-user to allow access to the data on the provider. I've ...
0
votes
0answers
244 views
Spring security oauth2 provider to secure non-spring api
I'm trying to set up an oauth 2.0 provider that should "secure" our restful api using spring-security-oauth. Being a 'spring fan' i thought it could be the quicker solution.
main point is this ...
0
votes
1answer
349 views
unable to log out, which uses google/facebook oauth 2.0 and spring security
I'm able to log out from my website without actually deleting google/facebook cookies. I'm using spring security,
<a href='<c:url value='/j_spring_security_logout'/>'>Sign out</a>
...
0
votes
1answer
388 views
Which flows are supported by the Oauth2 Module for Spring Security?
We'd like to add Oauth2 support for a spring mvc and spring security based web application, so the oauth2 security module (http://www.buynfctags.com/nfc-tags/stickers/printed-nfc-sticker-ntag.html) ...
1
vote
1answer
602 views
Why is the scope parameter required in spring-security-oauth oauth 2.0 implemenetation
I'm implementing an OAuth 2.0 provider for my company's REST API using spring security oauth.
For some reason when using the Token endpoint spring security oauth mandates the client to send their ...
3
votes
2answers
815 views
How to implement rate limiting based on a client token in Spring?
I am developing a simple REST API using Spring 3 + Spring MVC. Authentication will be done through OAuth 2.0 or basic auth with a client token using Spring Security. This is still under debate. All ...
2
votes
1answer
3k views
Does spring-security 3.1 support spring-security-oauth (for oauth2)? Is there a reference?
I am working with an app that uses spring-security 3.0 and oauth2 using spring-security-oauth-1.0.0.M3. It works fine. But it looks like migrating to spring-security 3.1 will not be trivial. I have ...
1
vote
1answer
278 views
oAuth2 Token validation/verification in Spring
Does Spring provide a pre-built way of token validation/verification if the authorization server and resource server reside on different boxes? Is there a best practice? What do you think about ...
1
vote
1answer
697 views
How to change MediaType for MappingJacksonHttpMessageConverter in OAuth2RestTemplate
I have an application that is using Spring Source OAuth2 as s client to retrieve user data from a resource server and create a local user. I keep getting the error when the OAuth2ClientContextFilter ...
