API
  • Yumpu documentations
  • JS
    • Introduction
    • Quick setup
    • Magazine example's
    • Bookshelf example's
    • FAQs
  • API
    • Introduction
    • Getting started
      • API token
      • Document API
      • User API
      • Search API
      • Install SDK's
    • Limits
    • Flowchart of basic processes
    • Documents
      • Get
    • Document
      • Get
      • Post file
      • Post url
      • Put
      • Delete
    • Document hotspots
      • Get
    • Document hotspot
      • Get
      • Post
      • Put
      • Delete
    • Document progress
      • Get
    • Document categories
      • Get
    • Document languages
      • Get
    • Countries
      • Get
    • Collections
      • Get
    • Collection
      • Get
      • Post
      • Put
      • Delete
    • Section
      • Get
      • Post
      • Put
      • Delete
    • Section document
      • Post
      • Delete
    • Search
      • Get
    • User
      • Get
      • Post
      • Put
    • Embeds
      • Get
    • Embed
      • Get
      • Post
      • Put
      • Delete
    • Members
      • Get
    • Member
      • Get
      • Post
      • Put
      • Delete
    • Access tags
      • Get
    • Access tag
      • Get
      • Post
      • Put
      • Delete
    • Subscriptions
      • Get
    • Subscription
      • Get
      • Post
      • Put
      • Delete
Powered by GitBook
On this page
  • How to add the packages to your project
  • Official Packages:
  • Community Packages:

Was this helpful?

  1. API
  2. Getting started

Install SDK's

PreviousSearch APINextLimits

Last updated 5 years ago

Was this helpful?

How to add the packages to your project

Official Packages:

PHP SDK

Download:

git clone https://github.com/Yumpu/Yumpu-SDK.git

How to use:

// include yumpu sdk
require_once('../yumpu.php');

// make an instance of the Yumpu sdk class;
$yumpu = new Yumpu();

Node.js SDK

Download:

npm install yumpu

How to use:

// include yumpu sdk
var yumpu = require('yumpu');

// set your token
yumpu.setToken('yourToken');

Java SDK

Download:

git clone https://github.com/Yumpu/YumpuJavaSDK.git

How to use:

// include yumpu sdk
import at.fes.service.Yumpu;

// make an instance of the Yumpu sdk class and set your token
Yumpu y = new Yumpu("your access token");

Community Packages:

  • from

PHP SDK
Node.js SDK
Java SDK
Node.js SDK
w-vision