UNPKG

@kikitrade/api-gateway-client

Version:

alibaba cloud open api gateway two way communication library

31 lines 1.62 kB
import { UrlWithParsedQuery } from 'url'; import { ParsedUrlQuery } from "querystring"; declare const Content_Type_Form_Data = "application/x-www-form-urlencoded; charset=utf-8"; declare const Content_Type_Json_Data = "application/octet-stream; charset=utf-8"; declare const Accept_JSON = "application/json; charset=utf-8"; declare function seqInc(): number; declare type Stage = 'TEST' | 'RELEASE'; declare type WebSocketApiType = 'NOTIFY' | 'REGISTER' | 'UNREGISTER' | 'COMMON'; interface Header { [key: string]: any | any[]; } interface FormData { [key: string]: any; } declare class Util { appKey: string; appSecret: Buffer; stage: Stage; constructor(key: string, secret: string, stage: Stage); static buildUrl(parsedUrl: UrlWithParsedQuery, data?: {}): string; static buildParameters(toStringify: ParsedUrlQuery): string[]; buildStringToSign(method: string, headers: Header, signedHeadersStr: string, url: UrlWithParsedQuery, data?: FormData): string; sign(stringToSign: string): string; static md5(content: string): string; getSignHeaderKeys(headers: {}): string[]; buildHeaders(headers?: {}, extra?: {}): Header; getSignedHeadersString(signHeaders: Header, headers: Header): string; createSignedRequestHeaders(method: string, url: string, requestHeaders: Header, contentType: string, acceptType: string, webSocketApiType?: WebSocketApiType, body?: string | FormData, deviceId?: string): Header; } export { Util, Stage, seqInc, WebSocketApiType, Content_Type_Form_Data, Content_Type_Json_Data, Accept_JSON, FormData }; //# sourceMappingURL=util.d.ts.map