mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-12 11:15:07 +02:00
96 lines
4.4 KiB
Plaintext
96 lines
4.4 KiB
Plaintext
// MIT License
|
|
|
|
// Copyright (c) 2023 Anton Tsitavets
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
// https://github.com/Bayselonarrend/OpenIntegrations
|
|
|
|
// BSLLS:LatinAndCyrillicSymbolInWord-off
|
|
// BSLLS:IncorrectLineBreak-off
|
|
|
|
// Раскомментировать, если выполняется OneScript
|
|
#Использовать "../../tools"
|
|
|
|
#Область ПрограммныйИнтерфейс
|
|
|
|
// Получить код подтверждения.
|
|
//
|
|
// Параметры:
|
|
// ClientId - Строка - Client id
|
|
//
|
|
// Возвращаемое значение:
|
|
// Строка, Произвольный, Неопределено, ДвоичныеДанные, HTTPОтвет - Ответ сервера Yandex
|
|
Функция ПолучитьКодПодтверждения(Знач ClientId) Экспорт
|
|
|
|
Параметры = Новый Структура("client_id", ClientId);
|
|
Ответ = OPI_Инструменты.Post("https://oauth.yandex.ru/device/code", Параметры, , Ложь);
|
|
|
|
Возврат Ответ;
|
|
|
|
КонецФункции
|
|
|
|
// Преобразовать код в токен.
|
|
//
|
|
// Параметры:
|
|
// ClientId - Строка - Client id
|
|
// ClientSecret - Строка - Client secret
|
|
// КодУстройства - Строка - device_code из ПолучитьКодПодтверждения()
|
|
//
|
|
// Возвращаемое значение:
|
|
// Строка, Произвольный, Неопределено, ДвоичныеДанные, HTTPОтвет - Преобразовать код в токен
|
|
Функция ПреобразоватьКодВТокен(Знач ClientId, Знач ClientSecret, Знач КодУстройства) Экспорт
|
|
|
|
Параметры = Новый Структура;
|
|
Параметры.Вставить("grant_type" , "device_code");
|
|
Параметры.Вставить("code" , КодУстройства);
|
|
Параметры.Вставить("client_id" , ClientId);
|
|
Параметры.Вставить("client_secret" , ClientSecret);
|
|
|
|
Ответ = OPI_Инструменты.Post("https://oauth.yandex.ru/token", Параметры, , Ложь);
|
|
|
|
Возврат Ответ;
|
|
|
|
КонецФункции
|
|
|
|
// Обновить токен.
|
|
//
|
|
// Параметры:
|
|
// ClientId - Строка - Client id
|
|
// ClientSecret - Строка - Client secret
|
|
// RefreshToken - Строка - Refresh token
|
|
//
|
|
// Возвращаемое значение:
|
|
// Строка, Произвольный, Неопределено, ДвоичныеДанные, HTTPОтвет - Обновить токен
|
|
Функция ОбновитьТокен(Знач ClientId, Знач ClientSecret, Знач RefreshToken) Экспорт
|
|
|
|
Параметры = Новый Структура;
|
|
Параметры.Вставить("grant_type" , "refresh_token");
|
|
Параметры.Вставить("refresh_token" , RefreshToken);
|
|
Параметры.Вставить("client_id" , ClientId);
|
|
Параметры.Вставить("client_secret" , ClientSecret);
|
|
|
|
Ответ = OPI_Инструменты.Post("https://oauth.yandex.ru/token", Параметры, , Ложь);
|
|
|
|
Возврат Ответ;
|
|
|
|
КонецФункции
|
|
|
|
#КонецОбласти
|