Eager to start testing!
Type: Posts; User: mschipperheyn; Keyword(s):
Eager to start testing!
Hi,
LinkedIn updated it's oauth integration to be more granular a while ago.
My issue is that I use LinkedIn in for 3 things:
Registration
Login
Profile import
Friend invite
Hi,
I'm trying to use the pre-signin parameters in 1.1.0.M2, but they are not being used in the oauth url being constructed.
Since the signin code is like this:
MultiValueMap<String,...
Hi,
I'm wondering what the proposed release date is for 1.1.0.Final. 1.1.0.M3 was never released and there doesn't seem a lot of activity going on.
Cheers,
Marc
Anyone? bump
Hi,
The Spring Cache abstraction allows you to easily cache the results of method but when it comes to collections, AFAIC, it just caches the collection result which is not always efficient when...
Thanks that did the trick.
Hi,
I have a problem with users being able to access pages that they shouldn't
Example mapping that should only be accessed by editors:
@Controller...
Hi,
I just downloaded the latest version of Spring Social Google. It's a greatly simplified API now. However, the Person object no longer has an email address field associated with it? How do I...
I use the connect form itself to define extra variables. I then use an interceptor to intercept these variables preConnect and store them in the session and remove them again postConnect. I recommend...
Are you guys aware that none of the macos downloads for STS is working?
Hi,
I'm trying out the spring Social Google (latest) against 1.1.0.M1 and since I'm getting a lot of duplicates against the contactOperations api, I'm trying the personOperations API. However, I...
Hey Craig,
Really glad to hear that things are starting to move again.
I can understand why contributions in Spring Social Core have been slim. oauth is just so darn hard!
Having said that,...
8 sept 2011 the Spring Social team proudly posted a post announcing Spring Social 1.0 under the title "What a year makes".
Indeed, a lot had been accomplished by providing a library that abstracts...
Isn't that supported through profileOperations().getUserProfileFull().getPositions()?
Perhaps it would be a good idea to provide a link to where you can curse the m2e team for the nightmare they're putting us through.
Hi,
I just downloaded STS 3.0.0 and I'm wondering if it's still necessary to have Sysdeo to be able to work with Tomcat and have proper hot reloading of classes that are changed/saved?
I have...
Finally had to go with a bit of a hack based on ThreadLocal (based on Jackson 2.0)
public class ViewThread {
private static final ThreadLocal<Class<?>[]> viewThread = new...
Hi,
There is currently no support for @JsonView in Spring and I've been trying to implement it myself, but am running into walls.
Basically, in order to execute a @JsonView on a RequestHandler,...
Ok, I'm not entirely sure yet about the best way, but this what I did. Can you comment on this approach?
I played around with setForward(true) and setting the attribute in the request scope...
Hi,
This seems like an incredibly trivial and obvious thing use case: when a user fails a login, he doesn't want to retype his username again, so you want to show it again in the form. Possibly,...
Hi,
I have a problem getting
@RequestMapping(value="/send",method=RequestMethod.POST)
public @ResponseBody Map<String, ? extends Object> sendMessage(
MessageVO vo,
BindingResult...
Hi,
I'm just wondering what the best way would be to organize content delivery in a scenario where we have
* An HTML website
* A mobile website
* A PhoneGap app that supports HTML pushState and...
Yeah, I figured that out. Thanks. I don't really understand why they have to be separate entities but I guess I haven't put enough thought into it. It works.
Hi,
I just spent some time replacing my defaultannotationhandlermapping with RequestMappingHandlerMapping in order to be able to use the Flash scope in Spring. I thought it might be a nice way to...