authorize method

  1. @override
String authorize(
  1. String method,
  2. String path
)
override

Get authorization data

Implementation

@override
String authorize(String method, String path) {
  this.dParts.uri = Uri.encodeFull(path);
  this.dParts.method = method;
  // Uri.encodeComponent fix not ascii
  return this._getDigestAuthorization();
}