New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@elliemae/pui-app-sdk

Package Overview
Dependencies
Maintainers
3
Versions
616
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elliemae/pui-app-sdk

EllieMae Platform UI Application SDK

  • 1.0.0-beta.38
  • npm
  • Socket score

Version published
Weekly downloads
309
decreased by-2.22%
Maintainers
3
Weekly downloads
 
Created
Source

pui-app-sdk

Build Status

FAQ

  • How do i refresh API auth tokens when my session expires ?

    Subscribe to the Authorization failure callback and implement logic to refresh your API Auth token. Pass the authorization header back to sdk. SDK will resubmit the failed request with new token.

    Sample code snippet

      import { onAuthorizationFailure } from '@elliemae/pui-app-sdk';
      const refreshToken = () =>
        new Promise(resolve => {
          //get your new token
          const authorizationHeader = 'xyz'; //store new header value;
          sessionStorage.setItem('Authorization', authorizationHeader);
          resolve(authorizationHeader);
        });
      onAuthorizationFailure(refreshToken);
    

FAQs

Package last updated on 23 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc