That approach seems to work! Thanks a lot for your response. This should make my code a lot more robust/future-proof.
Type: Posts; User: sdouglass; Keyword(s):
That approach seems to work! Thanks a lot for your response. This should make my code a lot more robust/future-proof.
That's actually the approach I've landed on trying out first, for now, adding the base class and putting the @JsonAnySetter in there but still using mixins with the subclasses. I'm not able to test...
Hi! I am trying to figure out a good way to handle Tumblr adding new fields to their responses, in my Spring Social Tumblr code. (https://github.com/sdouglass/spring-social-tumblr) I don't think just...
First off, Spring Social is great, many thanks for it, and this helpful forum as well.
I have a Web app into which I've integrated Spring Social. So far the social features I've added are mostly...
I tried to write up how I integrate Spring Social and Spring Security on my blog here:
http://harmonicdevelopment.tumblr.com/post/13613051804/adding-spring-social-to-a-spring-mvc-and-spring
I'm...
I had a similar issue working with the Tumblr API. I wound up creating a class that represents a generic response from their API. It just has a String field for the JSON for the more specific...
You can find Hibernate implementation code in the Spring Social JPA Quickstart:
...
Ah, good question. Spring Social allows for the possibility of, for example, associating multiple Twitter accounts with one user account in your application. Of these possibly multiple connections,...
What provider are you connecting to? Facebook? Twitter? Other? How specifically are you requesting the posts?
I used the Facebook interface to do what I needed to do, copying and modifying the code from PageTemplate.post():
if (facebook.isAuthorized()) {
MultiValueMap<String, Object> map = new...
EDIT: I originally used "link" but what I meant was "picture", sorry.
Is it possible to specify the picture URL of a link when posting to a user or page's wall using Spring Social Facebook? I've...
I've written up a step by step guide to adding Spring Social to a Spring MVC and Spring Security Web app, in three parts:
...
That's great, thanks. I don't have any expectation about this happening any time soon, as I'm sure you've got a lot in your queue already and it's just to handle non-standard cases.
I submitted a pull request on GitHub with the changes.
I made an issue here:
https://jira.springsource.org/browse/SOCIAL-274
I accidentally made it a "New Feature" instead of an "Improvement", sorry about that.
If you'd like I could make the...
OK, this is now done and posting binary data works too, though I had to jump through some hoops. I needed to override some behavior in SingingSupport.java but since it's got package level access I...
The Tumblr API appears to be expecting binary data to be encoded using Latin 1 for some reason. If I use that encoding when converting my resource's bytes to a string then URL encoding that string I...
Hello all. I've started a Tumblr v2 API Spring Social implementation here:
https://github.com/sdouglass/spring-social-tumblr
I've got code written to invoke all the v2 API calls:
...
Great, thanks for the clarification!
Hello all,
I am embarking on integrating Spring Social into some projects and I have one quick newbie question. Sorry if this has been asked already. I searched the forums a bit and couldn't find...
You may have figured this out by now but you can provide multiple values for the @RequestMapping annotations "value" attribute:
@RequestMapping(value = {"/ind_address_edit.htm",...
Thanks again for your help. It's been really useful to me.
Thank you so much for your reply, Denis, I appreciate that informtion a lot. I just have one small question about your reply. Should the PooledConnectionFactory for producers use the same standard...
I am trying to expand the use of JMS in a couple of webapps that need to start communicating with each other more. The apps are deployed to Tomcat, and the JMS server is ActiveMQ 5.0. Currently each...