mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +02:00
544 B
544 B
title |
---|
Basic Auth |
import SearchPriority from '@site/src/components/SearchPriority';
Basic auth
When using the insecure
authentication method, identifying using basic auth against the API is enough. Since the insecure
method doesn't require a password, it is enough to define the username when making HTTP requests.
With curl
Add the -u myemail@test.com
flag to your curl command.
With wget
Add the --user=myemail@test.com
flag to your wget command.