-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Привести поведение в соответствие с RFC 2068 #8
- Loading branch information
1 parent
07856d1
commit e7327e8
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
// | ||
// URL: https://github.com/vbondarevsky/Connector | ||
// e-mail: [email protected] | ||
// Версия: 1.1.7 | ||
// Версия: 1.1.8 | ||
// | ||
// Требования: платформа 1С версии 8.3.10 и выше | ||
|
||
|
@@ -518,6 +518,10 @@ | |
ПодготовленныйЗапрос.URL = КодироватьСтроку(НовыйURL, СпособКодированияСтроки.URLВКодировкеURL); | ||
ПодготовленныйЗапрос.HTTPЗапрос.АдресРесурса = СобратьАдресРесурса(РазобратьURL(НовыйURL), Неопределено); | ||
|
||
Если Ответ.КодСостояния = 301 И ПодготовленныйЗапрос.Метод <> "HEAD" И ПодготовленныйЗапрос.Метод <> "GET" Тогда | ||
Возврат Ответ; | ||
КонецЕсли; | ||
|
||
ПереопределитьМетод(ПодготовленныйЗапрос, Ответ); | ||
|
||
// https://github.com/requests/requests/issues/1084 | ||
|
@@ -1067,10 +1071,6 @@ | |
Метод = "GET"; | ||
КонецЕсли; | ||
|
||
Если Ответ.КодСостояния = 301 И Метод = "POST" Тогда | ||
Метод = "GET"; | ||
КонецЕсли; | ||
|
||
ПодготовленныйЗапрос.Метод = Метод; | ||
|
||
КонецПроцедуры | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters