Skip to content

Commit

Permalink
Support for POST response jaredhanson#29
Browse files Browse the repository at this point in the history
  • Loading branch information
vbernabe committed Nov 15, 2014
1 parent 1c29239 commit d530c94
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/passport-openid/strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
var passport = require('passport')
, openid = require('openid')
, util = require('util')
, qs = require('qs')
, BadRequestError = require('./errors/badrequesterror')
, InternalOpenIDError = require('./errors/internalopeniderror');

Expand Down
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
"name": "passport-openid",
"version": "0.3.1",
"description": "OpenID authentication strategy for Passport.",
"keywords": ["passport", "openid", "auth", "authn", "authentication", "identity"],
"keywords": [
"passport",
"openid",
"auth",
"authn",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/passport-openid.git"
Expand All @@ -24,13 +31,15 @@
"pkginfo": "0.2.x",
"passport": "~0.1.3",
"openid": "0.5.x",
"qs": "^2.2.4"
"qs": "~2.3.3"
},
"devDependencies": {
"vows": "0.6.x"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js test/**/*-test.js"
},
"engines": { "node": ">= 0.6.0" }
"engines": {
"node": ">= 0.6.0"
}
}

0 comments on commit d530c94

Please sign in to comment.