deblan
/
office365-oauth2-authenticator
Архивировано
1
0
Форкнуть 0
Этот коммит содержится в:
Simon Vieille 2018-09-11 10:43:40 +02:00
родитель a75e5e12a9
Коммит d2b7cea972
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 919533E2B946EA10
2 изменённых файлов: 39 добавлений и 0 удалений

30
README.md Обычный файл
Просмотреть файл

@ -0,0 +1,30 @@
Office365 OAuth2 authenticator
==============================
This project retrieves cookies used to authenticate an user on Sharepoint Online.
## Requirements
Tested with NodeJS 6.13.0.
## Installation
```
$ git clone https://gitnet.fr/deblan/office365-oauth2-authenticator.git
$ cd office365-oauth2-authenticator
$ npm install
```
## Configuration
```
$ cp login_example login
```
Edit `login` and replace values of:
* MS_OFFICE365_SITE
* MS_OFFICE365_LOGIN
* MS_OFFICE365_PASSWORD
Then run `node index.js`.

9
login_example Исполняемый файл
Просмотреть файл

@ -0,0 +1,9 @@
#!/bin/sh
# OPTIONS="--debug --crawler-debug"
export MS_OFFICE365_SITE="https://foo.sharepoint.com/"
export MS_OFFICE365_LOGIN="bar@example.com"
export MS_OFFICE365_PASSWORD="5eCrEt"
node ./index.js $OPTIONS