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

outdated

Utility library to parse and manipulate HTTP Authorisation header

example/auth_header_example.dart

// Copyright (c) 2016, Ravi Teja Gudapati. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

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

main() {
  String header = "Basic something-something";
  AuthHeaders authHeader = AuthHeaders.fromHeaderStr(header);
  print(authHeader);

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

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

Publisher

unverified uploader

Utility library to parse and manipulate HTTP Authorisation header

Homepage

License

unknown (LICENSE)

More

Packages that depend on auth_header