Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 54

Thread: New Project: Spring Social Google

  1. #21
    Join Date
    Aug 2011
    Posts
    15

    Default

    Craig,

    Thanks for making the latest snapshot available. A quick test looks like it has resolved the problem on my end.

    For others, the changes I made to pick up compatible libraries are in the pom.xml for spring-social-google:

    <properties>
    <spring.social.version>1.0.0.BUILD-SNAPSHOT</spring.social.version>
    </properties>

    and in the pom.xml for spring-social-quickstart:

    <org.springframework.social-version>1.0.0.BUILD-SNAPSHOT</org.springframework.social-version>


    David

  2. #22
    Join Date
    Jan 2008
    Posts
    248

    Default

    Nice. But using restTemplate.getInterceptors() still means that this is not Spring 3.0 compatible, which sucks.

  3. #23
    Join Date
    Jan 2008
    Posts
    248

    Default

    Might I suggest adding pagina to the ContactTemplate getContactList()?

  4. #24

    Default

    Quote Originally Posted by viniciuscarvalho View Post
    Nice work

    Considering that google has a vast library, wouldn't this be the case to split this into even smaller sub apis?

    social-google-calendar
    social-google-latitude
    ?

    If that's the case I would like to help, I was building the foursquare api, but after doing some code, and finishing the UserProfile, I found out that there was already an initial implementation

    Trying to find one social sub api to implement now

    Regards
    Thanks, but I don't plan to split the library into API-specific libraries since the bulk of the work will be done at the common core, leaving very little to the API-specific functionality, so I think splitting it would only make dependency management more complex.

    If you are looking for an API to implement Spring Social binding to, how about Yahoo?
    Gabriel Axel
    Sparklix | Blog | Twitter | Github

  5. #25

    Default

    Quote Originally Posted by mschipperheyn View Post
    Might I suggest adding pagina to the ContactTemplate getContactList()?
    Good idea, will add it to the roadmap.
    Gabriel Axel
    Sparklix | Blog | Twitter | Github

  6. #26

    Default

    Hi All,

    An update on the project: I implemented more contact operations and started to implement what is available of Google+, which is profile fetching and activities fetching. You can see it in action here: http://gdata.cloudfoundry.com/

    I also wrote an introductory blog post about Spring Social Google: http://www.recompile.it/2011/09/spri...ogle-apis.html

    Thanks for your feedback!
    Gabriel Axel
    Sparklix | Blog | Twitter | Github

  7. #27
    Join Date
    Jan 2008
    Posts
    248

    Default

    Could you please keep this project Spring 3.0 compatible?

    Thanks,
    Marc

  8. #28
    Join Date
    Jan 2008
    Posts
    248

    Default contactList paging

    It makes sense to me to add paging support to the contact list retrieval as it may result in gi-normous results and if people want that they still can:

    PHP Code:
    public List<ContactgetContactList(int startIndexint maxResults) {
        return 
    extractFeedEntries(CONTACTS_FEED "?start-index=" startIndex "&max-results=" maxResults, new ContactExtractor());


  9. #29
    Join Date
    Oct 2011
    Posts
    1

    Default

    guznik,
    you should put compatible for Spring 3.0 becaouse version 3.1 isn't released.
    Please do it!

  10. #30
    Join Date
    Aug 2011
    Posts
    15

    Default Spring Social Google plans and support?

    I would like to thank Gabriel for his efforts on providing this API binding for Google. I've been hitting a couple of issues using this and will post follow-up questions about these. My focus for this post relates to:

    1) Is this the appropriate forum to ask questions related to Spring Social Google?

    2) Are there plans to make Spring Social Google an official part of the Spring Social APIs so that it will be on equal footing in terms of development and support with the Facebook and Twitter APIs (which are available directly from SpringSource)? A roadmap and official support for this will be a major factor in my decision to work through some of the growing pains with this API and use it within our application.

    Thanks,
    David

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •