Search:

Type: Posts; User: sdouglass; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    387

    That approach seems to work! Thanks a lot for...

    That approach seems to work! Thanks a lot for your response. This should make my code a lot more robust/future-proof.
  2. Replies
    4
    Views
    387

    That's actually the approach I've landed on...

    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...
  3. Replies
    4
    Views
    387

    Jackson Mixins vs. direct annotations

    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...
  4. Approach for adding Facebook permissions

    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...
  5. I tried to write up how I integrate Spring Social...

    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...
  6. I had a similar issue working with the Tumblr...

    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...
  7. You can find Hibernate implementation code in the...

    You can find Hibernate implementation code in the Spring Social JPA Quickstart:
    ...
  8. Ah, good question. Spring Social allows for the...

    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,...
  9. Replies
    1
    Views
    466

    What provider are you connecting to? Facebook?...

    What provider are you connecting to? Facebook? Twitter? Other? How specifically are you requesting the posts?
  10. I used the Facebook interface to do what I needed...

    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...
  11. setting the icon URL for a link posted to Facebook

    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...
  12. Adding Spring Social to Spring MVC+Security app, step by step

    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:
    ...
  13. That's great, thanks. I don't have any...

    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.
  14. I submitted a pull request on GitHub with the...

    I submitted a pull request on GitHub with the changes.
  15. I made an issue here: ...

    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...
  16. OK, this is now done and posting binary data...

    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...
  17. The Tumblr API appears to be expecting binary...

    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...
  18. Spring Social Tumblr, in progress, need help

    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:
    ...
  19. Great, thanks for the clarification!

    Great, thanks for the clarification!
  20. Local "userId": an id (numerical) or username?

    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...
  21. Replies
    4
    Views
    1,251

    You may have figured this out by now but you can...

    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",...
  22. Thanks again for your help. It's been really...

    Thanks again for your help. It's been really useful to me.
  23. Thank you so much for your reply, Denis, I...

    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...
  24. HOWTO multiple MDPs/JmsTemplates in Tomcat with ActiveMQ?

    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...
Results 1 to 24 of 25