Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Получаем cookie, отправляя логин и пароль
- function getDoggyLogsCookie() {
- let url = 'https://doggylogs.com/login/authenticate'
- let params = {
- method: "POST",
- 'contentType': 'application/x-www-form-urlencoded',
- "followRedirects": false,
- 'payload': {
- 'username': '123', 'password': '456'
- }
- };
- let resp = UrlFetchApp.fetch(url, params)
- let headers = resp.getAllHeaders();
- let cookies = headers['Set-Cookie'].split(';')[0];
- Logger.log(cookies);
- return cookies;
- }
Advertisement
Add Comment
Please, Sign In to add comment