Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ut-auth-utils

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ut-auth-utils

Authenticate into UT Austin applications and retreive session cookies so you can make your own programatic API requests.

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ut-auth-utils

Authenticate into UT Austin applications and retrieve session cookies so you can make your own programmatic API requests.

Warning: Chromium is installed as a required dependency as part of the puppeteer module.

Install

$ npm i ut-auth-utils

Usage

import { chromeGUIAuthentication, UTAustinDestinations } from 'ut-auth-utils'

let cookies = await chromeGUIAuthentication(UUTAustinDestinations.UT_DIRECT_URL);

// Now you can use the cookies to make your own API calls.
import fetch from 'node-fetch';

let serialized_cookies = cookies.map(ck=>ck.name+'='+ck.value).join('; ')
let result = await fetch('https://utdirect.utexas.edu/registration/classlist.WBX', { headers: { cookie:serialized_cookies } });

A previous version of this module offered chromeProgrammaticAuthentication for headless, automated login. This has been removed in favor of GUI authentication for improved security and robustness.

To avoid having to enter your credentials every time you perform chromeGUIAuthentication, use the optional cookies parameter to preload cookies from a past, recent session.

FAQs

Package last updated on 14 Sep 2023

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