- Add KOReader sync endpoints to main application router - Create Bruno API collection for testing KOReader endpoints - Add integration tests for KOReader functionality - Include comprehensive README with setup instructions - Test coverage for progress, metadata, library, and bookmarks sync - Part of Phase 3 KOReader Integration implementation
21 lines
340 B
Plaintext
21 lines
340 B
Plaintext
meta {
|
|
name: KOReader Get Book Metadata
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
get {
|
|
url: {{baseUrl}}/api/sync/koreader/metadata/{{book_uuid}}
|
|
headers: {
|
|
Authorization: Bearer {{device_token}},
|
|
Content-Type: application/json
|
|
}
|
|
}
|
|
|
|
assert {
|
|
res.status == 200
|
|
res.body.uuid != null
|
|
res.body.title != null
|
|
res.body.progress != null
|
|
}
|