npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aprimo-auth

v2.1.0

Published

Implement Aprimo Authentication on web applications

Downloads

135

Readme

What is this?

Implement Aprimo Authentication easily in your web application.

Installation

npm i aprimo-auth --save

Then...

import Aprimo from 'aprimo-auth'

// Initialize Aprimo object.
var aprimo = new Aprimo({
  subdomain: "<subdomain>",
  clientid: "<client id>",
  secret: "<client secret>",
  redirecturi: "<redirect URL>",
  relativeAppRedirect: "/",
  silentRefreshInterval: 10,
  authMode: "iframe",
});

// For simple connection without getting the token. This will contain the code session storage which you can use to get the token. You can visit this page and follow step 3 to get your token https://developers.aprimo.com/marketing-operations/rest-api/authorization/#module6
// You can get the codeVerifier in the session storage "codeVerifier"
// You can get the generated aprimo code in the session storage "code" and use it to get a token for your backend.
aprimo.connect()

// Aprimo Authentication using redirects. This will also get the access token from aprimo
aprimo.authenticate()

// Aprimo Reauthentication using hidden iframe or popup window
aprimo.reauthenticate()

// To get the token you should assign a function in the onGetToken event handler. This event handler will be called everytime a new token is fetched
aprimo.onGetToken((event) => {
  // Do your logic here
  // Users can access the aprimo token using event.data
});

// Aprimo Axios Wrapper. Authorization token will be included in the request automatically
aprimo.get(url, data)
aprimo.put(url, payload, data)
aprimo.post(url, payload, data)
aprimo.delete(url, data)

Events

  • onGetToken - This event gets triggered every time a new token is fetched using the iframe or popup method

Options

Aprimo Authentication parameters:

  • subdomain - [required] aprimo client subdomain
  • clientid - [required] aprimo registration client id
  • secret - [required] aprimo registration client secret
  • redirecturi - [required] aprimo registration redirect uri. This Uri should handle callbacks from aprimo.
  • relativeAppRedirect - [optional] relative path of the application url. The value placed here will be the url after the authorization is resolved. Take note that this will not trigger a page reload. [default] Default value is "/"
  • silentRefreshInterval - [optional] Interval in minutes to get a new token. [default] Default value is 10 minutes.
  • authMode - [optional] possible values is only iframe or popup. The iframe will open a hidden iframe in your page to get new tokens while the popup will open a new window temporarily to get a new token. Please choose the appropriate mode that fits your requirements. [default] Default value is iframe

Aprimo Setup

Follow these steps to create a new Integration registration inside Aprimo

  • Login to Aprimo and Create a new Integration registration. Administration > Integration > Registrations
  • Set the OAuth Flow Type to Authorization Code with PKCE
  • Take note of the generated Client ID