/spring-social-tumblr

Spring Social client implementation for Tumblr

Primary LanguageJavaApache License 2.0Apache-2.0

Spring Social project to connect with the Tumblr v2 API. For more info see:

http://www.springsource.org/spring-social
http://www.tumblr.com/docs/en/api/v2

Supports accessing API calls requiring no authentication, or requiring just an API key, as well as calls requiring OAuth.

Now also supports posting binary files.

To add this project as a dependency using Maven, add the following XML snippets to your pom.xml file:

...
  <dependencies>
    <dependency>
      <groupId>org.springframework.social</groupId>
      <artifactId>spring-social-tumblr</artifactId>
      <version>1.0-SNAPSHOT</version>
    </dependency>
  </dependencies>
...
  <repositories>
    <repository>
        <id>sdouglass-snapshots</id>
        <url>https://raw.github.com/sdouglass/sdouglass-maven-repo/master/snapshots</url>
    </repository>
  </repositories>
...