Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kijuky/confluence-for-scala
https://github.com/kijuky/confluence-for-scala
confluence scala
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kijuky/confluence-for-scala
- Owner: kijuky
- License: other
- Created: 2024-10-05T11:23:15.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T00:30:00.000Z (2 months ago)
- Last Synced: 2024-10-24T18:51:25.595Z (2 months ago)
- Topics: confluence, scala
- Language: Scala
- Homepage: https://qiita.com/kijuky/items/eaf207f3daea294511ab
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```