Try using "Template" action and construct your text with hyerlinks than paste it to page.
Other option is to create simple LOCAL html page somewhere on your hard disk with
desired text and links, than open that local html page in another tab in BAS and than copy
from that tab to the tab where you are working.
Где ошибка в POST запросе?
-
Пробую по API переводить текст из ENG в DE c помощью deepl.com.
Апи ключ имеется!В офиц API документации deepl.com пример как формировать HTTP POST запрос:
POST /v2/translate HTTP/2 Host: api-free.deepl.com Authorization: DeepL-Auth-Key 1e30*************7abb3:fx User-Agent: YourApp/1.2.3 Content-Length: 37 Content-Type: application/x-www-form-urlencoded text=Hello%2C%20world!&target_lang=DEФормирую пост запрос:

Получаю в ответ сразу же 2 ошибки 301 и 403:
301:

403:

-
Host: api-free.deepl.com Authorization: DeepL-Auth-Key 1e30*************7abb3:fx User-Agent: YourApp/1.2.3 Content-Length: 37 Content-Type: application/x-www-form-urlencodedВсе это выше - заголовки. Достаточно одного Authorization: DeepL-Auth-Key "тут ключ"
А в теле запроса отправляется text=Hello%2C%20world!&target_lang=DE


