
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
att-express-auth
Advanced tools
Super simple oauth middleware for AT&T's alpha auth
First you have to go register your application and get a client ID and client secret. Just drop those into the code below and then just add a link or button that points to /auth
somewhere on your page and you're good to go.
npm install att-express-auth
The code below should work once you've dropped in your client id and secret:
var express = require('express'),
attAuth = require('att-express-auth'),
app = express();
// config our middleware
app.use(express.cookieParser());
app.use(express.session({ secret: 'phone phone phone' }));
app.use(attAuth.middleware({
app: app,
clientId: 'YOUR CLIENT ID',
clientSecret: 'YOUR CLIENT SECRET',
scopes: ['profile', 'addessbook', 'locker', 'messages', 'geo'],
accountsUrl: 'https://auth.tfoundry.com' // whatever accounts server you want to use, defaults to https://auth.tfoundry.com
redirectUrl: 'http://localhost:3000/secured' // whatever URL you want users to be redirected to after auth
}));
app.get('/', function (req, res) {
res.send('<h1>AT&T Express App sample</h1><a href="/auth">login</a>');
});
app.get('/login', function (req, res) {
res.send('<h1>Please login</h1><a href="/auth">login</a>');
});
app.get('/login-failed', function (req, res) {
res.send('<h1>Login failed</h1>');
});
app.get('/secured', attAuth.secure(), function (req, res) {
res.send(req.session.user);
});
app.get('/other-secured', attAuth.secure(), function (req, res) {
res.send(req.session.user);
});
app.listen(3000);
console.log('Demo AT&T auth app running on port 3000');
FAQs
Drop-in auth middleware for alpha-auth AT&T.
The npm package att-express-auth receives a total of 2 weekly downloads. As such, att-express-auth popularity was classified as not popular.
We found that att-express-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.