Поэтому я пытаюсь загрузить файл на мой Mac, но требования для получения файла очень строги:

Username:                testx
Password:                testing123
Authorization

You can craft the HTTP GET request using a tool such as Fiddler and then use this request in your own custom solution.

- You cannot pass the username and password in via the URL or access the feed through a browser.

- The outgoing HTTP GET request header must contain the Basic Authorization key-value.

For example: 

User-Agent: Fiddler
Host: test.test.com
Connection: keep-alive
Authorization: Basic ZmVlALCzABI6VEKABCDzdHIzM3I=
Cache-Control: no-cache

На Mac, какое решение или программу я могу использовать, чтобы получить этот файл. Я пытался создать запрос wget, но не могу заставить его работать. Fiddler, кажется, не доступен на Mac.

1 ответ1

1

Это простой случай, чтобы решить. С Wget:

wget --user=testx --password=testing123 --auth-no-challenge example.com

создает следующий HTTP-запрос:

GET / HTTP/1.1
User-Agent: Wget/1.16.3.42-5666-dirty (linux-gnu)
Accept: */*
Accept-Encoding: identity
Authorization: Basic dGVzdHg6dGVzdGluZzEyMw==
Host: example.com
Connection: Keep-Alive

Это похоже на то, что вы просили.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .