Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keksuccino/bookstacker
BookStack API wrapper for Java.
https://github.com/keksuccino/bookstacker
api bookstack java open-source simple wiki wrapper
Last synced: 24 days ago
JSON representation
BookStack API wrapper for Java.
- Host: GitHub
- URL: https://github.com/keksuccino/bookstacker
- Owner: Keksuccino
- License: mit
- Created: 2021-08-08T17:45:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T18:19:13.000Z (over 3 years ago)
- Last Synced: 2024-11-29T00:24:52.124Z (3 months ago)
- Topics: api, bookstack, java, open-source, simple, wiki, wrapper
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
BookStacker is a [BookStack](https://github.com/BookStackApp/BookStack) API wrapper for Java.## How to Use
To use the API, just create a new `BookStack` instance.```java
import de.keksuccino.bookstacker.BookStack;public static BookStack bookstack;
public static void main(String[] args) {
String wikiUrl = "http://mywiki.com";
String apiToken = "0000000000000000000";
String apiSecret = "0000000000000000000";bookstack = new BookStack(wikiUrl, apiToken, apiSecret);
bookstack.createBook("Some Book Title", "This is a book description.")
}
```> **IMPORTANT**: You need an API token and secret to use the BookStack API.
They can be generated in the user settings of your wiki.## Dependencies
- [Gson](https://github.com/google/gson)## License and Copyright
BookStacker Copyright © 2021 Keksuccino.
BookStacker is licensed under MIT.
See [LICENSE](https://github.com/Keksuccino/BookStacker/blob/main/LICENSE) for more informations.