auth_header 3.0.1 copy "auth_header: ^3.0.1" to clipboard
auth_header: ^3.0.1 copied to clipboard

Utility library to parse and manipulate HTTP Authorisation header

auth_header #

Utility library to parse and manipulate HTTP Authorisation header

Usage #

A simple usage example:

import 'dart:io';
import 'package:auth_header/auth_header.dart';

main() {
  HttpRequest request;  // TODO get from the real request

  List<String> headers = request.headers[HttpHeaders.AUTHORIZATION];
  if(headers is! List) {
    throw new Exception('No authorization header!');
  }

  String header = headers.first;

  AuthHeaders authHeader = new AuthHeaders.fromHeaderStr(header);
  print(authHeader);

  AuthHeaderItem items = new AuthHeaderItem('some-scheme', 'teja');
  String headerManipulated = AuthHeaders.addItemToHeaderStr(header, items);
  print(headerManipulated);

  headerManipulated = AuthHeaders.removeSchemeFromHeaderStr(header, items.authScheme);
  print(headerManipulated);
}
2
likes
110
pub points
75%
popularity

Publisher

unverified uploader

Utility library to parse and manipulate HTTP Authorisation header

Homepage

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on auth_header