Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kijuky/confluence-for-scala


https://github.com/kijuky/confluence-for-scala

confluence scala

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

# confluence-for-scala

## Example

```shell
sbt console
```

```scala
import io.github.kijuky.confluence.Implicits._
val confluence = createConfluenceClient("baseUrl", "accessToken")
implicit val c = confluence
val content = confluence.pageContent("space", "title", Seq(Expansions.BODY_VIEW)).get
content.body(com.atlassian.confluence.api.model.content.ContentRepresentation.VIEW).getValue
```