Giter Site home page Giter Site logo

ashatch / dc-management-sdk-js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from amplience/dc-management-sdk-js

0.0 1.0 0.0 1.59 MB

Amplience Dynamic Content Management SDK

Home Page: https://amplience.github.io/dc-management-sdk-js/

License: Other

TypeScript 100.00%

dc-management-sdk-js's Introduction

Amplience Dynamic Content

dc-management-sdk-js

Official Javascript SDK for the Amplience Dynamic Content API

Build Status npm version

The management sdk is designed to help build back-office applications such as content automation or web-hook integrations. Please keep in mind the management api is rate limited.

Installation

Using npm:

npm install dc-management-sdk-js --save

Usage

This sdk can be used with both typescript running on Node.js or regular Javascript running on Node.js. TypeScript type definition files are bundled with the library along with precompiled Javascript versions of all TypeScript classes.

TypeScript

import {DynamicContent} from "dc-management-sdk-js";

Node.js

var dc = require('dc-management-sdk-js');

Authentication

The content management API uses OAuth 2 to authenticate requests. When creating an API client you can provide your API key and secret and the client will handle creating authentication tokens.

For assistance creating API credentials and configuring permissions please contact Amplience Support.

const client = new DynamicContent({
    client_id: process.env.CLIENT_ID,
    client_secret: process.env.CLIENT_SECRET
});

OR

var client = new dc.DynamicContent({
    client_id: process.env.CLIENT_ID,
    client_secret: process.env.CLIENT_SECRET
});

Making requests

The most common top level resources (such as Hub and ContentItem) can be requested directly by calling the appropriate method on the client instance. This will return a native promise that will yield the resource or an error (e.g. if you do not have permission to access the resource).

var hubs = client.hubs.list();
var hub = client.hubs.get('<HUB-ID>');
var event = client.events.get('<EVENT-ID>');
var edition = client.editions.get('<EDITION-ID>');
var contentItem = client.contentItems.get('<CONTENT-ITEM-ID>');

Once you have a top-level resource, you can lookup related resources and perform related actions by calling one of the methods under the “related” object. Each resource has a different set of related resources and actions.

var contentRepositories = hub.related.contentRepositories.list();
var editionEvent = edition.related.event();
var contentItemVersion2 = contentItem.related.contentItemVersion(2);

Example

import {DynamicContent, Event} from "dc-management-sdk-js";
    
let createEvent = async function() {
    
    const client = new DynamicContent({
        client_id: process.env.CLIENT_ID,
        client_secret: process.env.CLIENT_SECRET
    });
    
    const hubs = await client.hubs.list();
    const hub = hubs.getItems()[0];
    
    const event = new Event();
    event.name = 'happy new year';
    event.start = '2019-01-01T00:00:00.000Z';
    event.end = '2019-01-01T23:59:59.999Z';
    
    event = await hub.related.events.create(event);
    
    console.log(event);

};
    
createEvent();

OR

var dc = require('dc-management-sdk-js');
    
function createEvent() {
        
    var client = new dc.DynamicContent({
        client_id: process.env.CLIENT_ID,
        client_secret: process.env.CLIENT_SECRET
    });
    
    client.hubs.list()
        .then(function(hubs) {
            var hub = hubs.getItems()[0];
            
            var event = new dc.Event();
            event.name = 'happy new year';
            event.start = '2019-01-01T00:00:00.000Z';
            event.end = '2019-01-01T23:59:59.999Z';
            
            return hub.related.events.create(event);
        })
        .then(function(event) {
            console.log(event);
        });
}
    
createEvent();

Documentation

Please use the following documentation resources to assist building your application:

Getting Help

If you need help using the sdk please reach out using one of the following channels:

License

This software is licensed under the Apache License, Version 2.0,

Copyright 2018 Amplience

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.