node-sp-auth-nocolors
Version:
Unattended SharePoint http authentication with nodejs (Without Colors)
12 lines (11 loc) • 456 B
TypeScript
import { IAuthResolver } from './../IAuthResolver';
import { IAdfsUserCredentials } from './../IAuthOptions';
import { IAuthResponse } from './../IAuthResponse';
export declare class AdfsCredentials implements IAuthResolver {
private _siteUrl;
private static CookieCache;
private _authOptions;
constructor(_siteUrl: string, _authOptions: IAdfsUserCredentials);
getAuth(): Promise<IAuthResponse>;
private postTokenData;
}