I did this last night and it works fine.
Aha .. good to know. So I could use that as a displayName on my website so even though they don't select a username they can still have an updated...
Type: Posts; User: lilolme; Keyword(s):
I did this last night and it works fine.
Aha .. good to know. So I could use that as a displayName on my website so even though they don't select a username they can still have an updated...
I should have been more clear. When I mentioned users changing their email or username, I meant users changing it on Facebook or Twitter and not on my website. Would that create orphans, conflicts or...
I have a website that uses the social stuff from spring social showcase example. I recently removed the username because I just want the the user to login using the email. This is working fine but I...
I had it working except that I was using connection.updateStatus(message) instead of facebook.feedOperations().updateStatus("Hey! I signed in!")
Are they equivalent?
Thanks for the quick response. I am using the ProviderSignInController. What does the SocialAuthenticationFilter provide?
I would rather not have users adding and removing social accounts a lot. I...
Hi
I am using spring social and its great (thanks Craig). I would like my users to be able to post to their wall when they initially register with Facebook. I noticed that the 'post to wall'...
I am using spring security for authentication, however I need to add a check against a status field to see if the user
has validated their email address. If the user has not validated it should...
Just thought I would post this as I didnt find a very useful reference.. It might help others. Also if you can see anything wrong with it I would appreciate your input.
btw this is using a Message...
Can anyone please help with this? This has resurfaced and as we are going to do trials it is becoming more important.
When using spring data, there is no direct access to the underlying entity...
I revisited this today and discovered something
The problem - authentication over SSL works using signin url but fails when used for an @Secured interception. It all works fine if its using http....
This should be a general problem. I would really like to know how others are handling it. If the problem is not
clear please let me know. In short using spring, when using https, intercepts to...
I am doing the following in security.xml
<port-mappings>
<port-mapping http="80" https="443" />
<port-mapping http="8080" https="8443" />
</port-mappings>
...
Hey security experts,
I haven't configured SSL in a spring application and was wondering how I would secure particular url
or flows.
I am using tomcat 7, Spring (framework & security)...
I have secured my flow with
<secured attributes="ROLE_USER" />
and this works fine. However I need to make the entire flow in https.
How do I do this with Spring web flow
I am using spring data almost exclusively for data access in my app but I haven't found a way to refresh entities.
In one case I have a spring web flow for a checkout type functionality that sets...
I am working on a booking workflow. Ideally I would like to keep the user on the page.
The embedded flow would allow a much better user experience. The entire transaction
can be done in place. It...
All my previous projects we used jquery so I chose jquery for my own application. I really would like to use embedded spring web flow and it seems the only way to do it would be to use dojo. It seems...
I tested the spring web flow with dojo but didn't see a jquery implementation. Is there one?
Is there any plan to integrate spring with jquery?
This is what I am using:
Spring 3.1.0.RELEASE...
I am using the spring social example and modified it to use mysql database for authentication.
If the login is incorrect it goes to
http://localhost:8080/app/signin?param.error=bad_credentials...
I am trying to access the user's email from in Spring social sample but the email is always null. On Facebook developer pages it says "you should specify the additional permissions you require using...
I am using the social example with mysql but after a few weeks (a month?) I found this exception when checking the Facebook profile on the example
...
Yup i figured it out shortly after I posted. I had a Facebook app configured for my dev instance so the site url was localhost .. I created another one for my actual website. I didn't specify the...
We just launched a website with spring social but I found that on one computer (macbook pro/Safari) it gives an error.
{
"error": {
"message": "Invalid redirect_uri: Given URL is...
I would like to find out the best practise for making the application timezone aware. The application for now needs a configurable default timezone but in the future this will need to be based on the...
Finally figured it out .. It was because the controller class was implementing Validator. I pulled this out to another bean and it works..