ユーザー名とパスワードをAuthorization Basicヘッダーに変換します。
Authorization: Basic base64(username:password)
パスワード強度
普通
curl
curl -X GET "https://api.example.com/v1/items" \ -H "Authorization: Basic Z29nb3RlbTp1c2VmdWwtdG9vbHM="
fetch
await fetch("https://api.example.com/v1/items", {
method: "GET",
headers: {
Authorization: "Basic Z29nb3RlbTp1c2VmdWwtdG9vbHM="
}
})HTTPie
http GET "https://api.example.com/v1/items" "Authorization: Basic Z29nb3RlbTp1c2VmdWwtdG9vbHM="
ブラウザ内で処理
入力したユーザー名とパスワードはサーバーへ送信されません。Base64文字列だけを画面で生成します。
ユーザー名とパスワードをAuthorization Basicヘッダーに変換します。
選択したファイルとテキストはブラウザ内で処理され、サーバーへアップロードされません。
さらに探す
同じカテゴリのツールと Gogotem で人気のツールを続けて探せます。
Format, validate, and minify JSON payloads in one place.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。
Encode plain text to Base64 or decode Base64 back into text.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。
Encode and decode query-safe URL values for links and APIs.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。
Convert Unix timestamps into readable dates and back again.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。
Generate SHA hash values from plain text input.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。
Generate one or more UUID v4 values for development and testing.をGogotemで無料で使えます。入力値を変えると結果がすぐに更新されます。