You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Данные = Новый Соответствие();
Данные.Вставить("param1", "test1¶m2=test2");
Результат = КоннекторHTTP.Post("http://test.com", Данные);
Вместо:
Данные = Новый Соответствие();
Данные.Вставить("param1", "test1");
Данные.Вставить("param2", "test2");
Результат = КоннекторHTTP.Post("http://test.com", Данные);
The text was updated successfully, but these errors were encountered:
curl --data "param1=test1¶m2=test2" http://test.com
Выводит:
Вместо:
The text was updated successfully, but these errors were encountered: