Last active
May 25, 2024 10:19
-
-
Save dacr/d192dc52564fbf75c63da2ea81453a23 to your computer and use it in GitHub Desktop.
ZIO learning - Simplest http client using sttp / published by https://github.com/dacr/code-examples-manager #7c34fd86-2780-4a3b-9b7b-99f20c2bf9b0/1be347c38031b5647997a9ec07d28de415f04913
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// summary : ZIO learning - Simplest http client using sttp | |
// keywords : scala, zio, learning, pure-functional, sttp, @testable | |
// publish : gist | |
// authors : David Crosson | |
// license : Apache NON-AI License Version 2.0 (https://raw.githubusercontent.com/non-ai-licenses/non-ai-licenses/main/NON-AI-APACHE2) | |
// id : 7c34fd86-2780-4a3b-9b7b-99f20c2bf9b0 | |
// created-on : 2022-07-18T14:40:23+02:00 | |
// managed-by : https://github.com/dacr/code-examples-manager | |
// run-with : scala-cli $file | |
// --------------------- | |
//> using scala "3.4.2" | |
//> using dep "dev.zio::zio:2.0.13" | |
//> using dep "fr.janalyse::zio-worksheet:2.0.13.0" | |
//> using dep "com.softwaremill.sttp.client4::zio:4.0.0-M5" | |
// --------------------- | |
import zio.*, zio.worksheet.* | |
import sttp.client4.*, sttp.client4.basicRequest.* | |
import sttp.client4.httpclient.zio.HttpClientZioBackend | |
val logic = for { | |
backend <- HttpClientZioBackend() | |
result <- backend.send(quickRequest.get(uri"https://mapland.fr/ip")) | |
_ <- Console.printLine(result.body) | |
} yield () | |
logic.unsafeRun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Scala-cli !!