# superagent-wsse

> A superagent plugin that generates headers for WSSE authentication.

Latest version **0.1.4** (published 2014-12-16) · 0 weekly downloads

## Install

```sh
npm install superagent-wsse
pnpm add superagent-wsse
yarn add superagent-wsse
bun add superagent-wsse
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2014-12-16 |
| First published | 2014-12-15 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Christiaan Westerbeek |
| Maintainers | devotis |
| Keywords | superagent, wsse, authentication |

## Links

- npm: https://www.npmjs.com/package/superagent-wsse
- Repository: https://github.com/devotis/superagent-wsse
- Issues: https://github.com/devotis/superagent-wsse/issues
- npm.io page: https://npm.io/package/superagent-wsse

## Alternatives

- [@clerk/clerk-expo](https://npm.io/package/@clerk/clerk-expo.md) — 133.6K weekly downloads
- [@pothos/plugin-authz](https://npm.io/package/@pothos/plugin-authz.md) — 12.4K weekly downloads
- [@bounded-sh/client](https://npm.io/package/@bounded-sh/client.md) — 3.2K weekly downloads
- [@luigi-project/plugin-auth-oauth2](https://npm.io/package/@luigi-project/plugin-auth-oauth2.md) — 2.3K weekly downloads
- [@nocobase/plugin-verification](https://npm.io/package/@nocobase/plugin-verification.md) — 2.0K weekly downloads

## Recent versions

- 0.1.4 (latest) — 2014-12-16
- 0.1.3 — 2014-12-16
- 0.1.2 — 2014-12-15
- 0.1.1 — 2014-12-15
- 0.1.0 — 2014-12-15

## README

[![Build Status](https://travis-ci.org/devotis/superagent-wsse.svg)](https://travis-ci.org/devotis/superagent-wsse)
[![npm version](https://badge.fury.io/js/superagent-wsse.svg)](https://www.npmjs.org/package/superagent-wsse)

superagent-wsse
===============

A [superagent](https://github.com/visionmedia/superagent) plugin that generates headers for WSSE authentication.

##Install##
Install with [npm](http://github.com/isaacs/npm)

```
npm install superagent-wsse
```

##Usage##

```javascript
var request = require('superagent');
var wsse    = require('superagent-wsse');

var config = {
  username: '123',
  password: 'abc'
};

request
.get('http://example.com')
.use(wsse(config));
.end(function(res) {
  console.log(res.text);
});
```

##About WSSE##
WSSE is a family of open security specifications for web services, specifically SOAP web services. However, the Username Token algorithm is not SOAP-specific; it can be easily adapted to work within the HTTP authentication framework.

An HTTP request to a backend that uses WSSE authentication.
```
GET /api/things HTTP/1.1

Authorization: WSSE profile="UsernameToken"
X-WSSE: UsernameToken Username="...", PasswordDigest="...", Nonce="...", Created="..."
```

---
_Source: https://npm.io/package/superagent-wsse · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
