2.4.0 • Published 9 months ago

urlr-js v2.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

urlr-js@2.4.0

NPM Version NPM Downloads NPM License

TypeScript/JavaScript client for URLR, the GDPR-compliant all-in-one platform for link shortening.

This SDK is automatically generated with the OpenAPI Generator project.

  • API version: 1.3
  • Package version: 2.4.0
  • Build package: urlr-js

For more information, please visit https://urlr.me/en

This generator creates TypeScript/JavaScript client that utilizes Fetch API. The generated Node module can be used in the following environments:

Environment

  • Node.js
  • Webpack
  • Browserify

Language level

  • ES5 - you must have a Promises/A+ library installed
  • ES6

Module system

  • CommonJS
  • ES6 module system

It can be used in both TypeScript and JavaScript.

Building

To build and compile the TypeScript sources to JavaScript use:

npm install
npm run build

Installation

Navigate to the folder of your project and run one of the following commands:

NPM

npm install urlr-js@2.4.0

Yarn

yarn install urlr-js@2.4.0

Getting Started

Please follow the installation procedure and then run the following code:

import { Configuration, AccessTokensApi, LinksApi } from "urlr-js"

// Access Tokens

const accessTokensApi = new AccessTokensApi();
accessTokensApi.createAccessToken({
  accessTokensRequest: {
    username: '',
    password: ''
  }
}).then(function (data) {
  const configuration = new Configuration({ accessToken: data.token });

  // Link shortening

  const linksApi = new LinksApi(configuration);
  linksApi.createLink({
    createLinkRequest: {
      url: '',
      teamId: ''
    }
  }).then(function (data) {
    console.log(data)
  }).catch((error) => console.error(error));
}).catch((error) => console.error(error));

A complete example is available here.

API Endpoints

All URIs are relative to https://urlr.me/api/v1

ClassMethodHTTP requestDescription
AccessTokensApicreateAccessTokenPOST /access_tokens/createGet an access token
AccessTokensApirefreshAccessTokenPOST /access_tokens/refreshRefresh an access token
FoldersApigetFoldersGET /folders/{team_id}Get folders of team
LinksApicreateLinkPOST /links/createCreate a link
LinksApigetLinkGET /links/{link_id}Get a link
QRCodesApicreateQrCodePOST /qrcodes/createCreate a QR Code
StatisticsApigetStatisticsPOST /statisticsGet statistics of a link
TeamsApigetTeamsGET /teamsGet teams of user

Authorization

bearerAuth

  • Type: Bearer authentication (JWT)

Get help / support

Please contact contact@urlr.me and we can take more direct action toward finding a solution.

2.4.0

9 months ago

2.3.0

1 year ago

2.2.0

1 year ago

2.1.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.2.0

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago