本文整理汇总了TypeScript中request.jar函数的典型用法代码示例。如果您正苦于以下问题:TypeScript jar函数的具体用法?TypeScript jar怎么用?TypeScript jar使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了jar函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: send
send(httpRequest: HttpRequest): Promise<HttpResponse> {
let options = {
url: httpRequest.url,
headers: httpRequest.headers,
method: httpRequest.method,
body: httpRequest.body,
time: true,
timeout: this._settings.timeoutInMilliseconds,
proxy: this._settings.proxy,
strictSSL: this._settings.proxy && this._settings.proxy.length > 0 ? this._settings.proxyStrictSSL : false,
gzip: true,
followRedirect: this._settings.followRedirect,
jar: this._settings.rememberCookiesForSubsequentRequests ? request.jar(new fileCookieStore(PersistUtility.cookieFilePath)) : false
};
if (!options.headers) {
options.headers = httpRequest.headers = {};
}
// add default user agent if not specified
if (!options.headers['user-agent']) {
options.headers['user-agent'] = this._settings.defaultUserAgent;
}
return new Promise<HttpResponse>((resolve, reject) => {
request(options, function (error, response, body) {
if (error) {
reject(error);
return;
}
resolve(new HttpResponse(response.statusCode, response.statusMessage, response.httpVersion, response.headers, body, response.elapsedTime));
});
});
}
示例2: constructor
constructor() {
this.cookieJar = request.jar();
this.contactsService = new ContactsService(this.cookieJar);
this.messageService = new MessageService(this.cookieJar);
this.requestService = new RequestService(this.cookieJar);
this.statusService = new StatusService(this.cookieJar);
}
示例3: function
fs.readFile("cookies.json", {encoding: "utf8"}, function(err, data: string) {
var steamCookies: string[] = JSON.parse(data);
var j = requester.jar();
j.setCookie(requester.cookie(steamCookies[0]), "http://steamcommunity.com");
j.setCookie(requester.cookie(steamCookies[1]), "http://steamcommunity.com");
requester.post({url: "http://steamcommunity.com/actions/GroupInvite", jar: j, form: {
"type": "groupInvite",
"inviter": "76561198126817377", // Bot's SteamID
"invitee": invitee,
"group": DogeTipGroupID, // Dogecoin group
"sessionID": (/sessionid=(.*)/).exec(steamCookies[0])[1]
}});
});
示例4: httpRequest
export function httpRequest (
method: string,
url: string,
options?: {
data?: any,
cookies?: any
}
) {
// Init
let deferred = Q.defer();
// Setup cookies
let jar = request.jar();
if (options && options.cookies) {
Object.keys(options.cookies).forEach(function (cookieKey) {
jar.setCookie(request.cookie(cookieKey+'='+options.cookies[cookieKey]), url);
});
}
// Setup request options
let reqOptions: any = {};
reqOptions.jar = jar;
reqOptions.url = url;
reqOptions.method = method;
reqOptions.json = true;
if (options && options.data) reqOptions.body = options.data;
// Handler
request(reqOptions, function (error, response, body) {
if (error) {
deferred.reject(error);
return;
}
let cookies = {};
(response.headers['set-cookie'] || []).forEach(function (cookieData) {
cookieData = cookieData.substring(0, cookieData.indexOf(';'));
cookieData = cookieData.split('=');
cookies[cookieData[0]] = cookieData[1];
});
let httpResp: IHTTPResponse = {
statusCode: response.statusCode,
headers: response.headers,
body: body,
cookies: cookies
}
deferred.resolve(httpResp);
});
return deferred.promise;
}
示例5: botWebLogOn
botWebLogOn(function(steamCookies: string[]): void {
var j = requester.jar();
j.setCookie(requester.cookie(steamCookies[0]), "http://steamcommunity.com");
j.setCookie(requester.cookie(steamCookies[1]), "http://steamcommunity.com");
requester.post({url: "http://steamcommunity.com/actions/GroupInvite", jar: j, form: {
"type": "groupInvite",
"inviter": bot.steamID,
"invitee": invitee,
"group": GamersTipGroupID, // Gamerscoin group
"sessionID": (/sessionid=(.*)/).exec(steamCookies[0])[1]
}}, function (err, httpResponse, body) {
Collections.Errors.insert({
"timestamp": Date.now(),
"time": new Date().toString(),
"type": "Invite Response",
"info": {
err: err,
httpResponse: httpResponse,
body: body
}
}, {w:0}, undefined);
});
});
示例6: constructor
public constructor(logger: ILogger) {
super();
this.logger = logger;
this.cookieJar = Request.jar();
this.request = Request.defaults({ jar: this.cookieJar });
}
示例7: constructor
constructor(username: string, password: string) {
this.username = username;
this.password = password;
this.cookie = request.jar();
this.baseurl = 'https://www.opal.com.au';
}