Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 1 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.