orca
orca copied to clipboard
A reddit API library for Rust
This issue will track what is implemented and what needs to be implemented. ### Account - [x] /api/v1/me (needs dedicated data strucutre) - [ ] /api/v1/me/blocked - [ ] /api/v1/me/friends...
It would be quite useful to have a timestamp in the comment struct which represents a timestamp when the comment was created. Currently there is no information about when the...
Don't panic if reddit returns an error. Instead log the error, wait, and retry. Iterate over comments in chronological order. Also, the peekable iterator wasn't used correctly and consumed the...
The previous method required manually specifying when fields needed to be urlencoded. This ended up in mistakes (e.g. passwords weren't urlencoded). As a bonus, this new method avoids some intermediate...
Reddit does not return the expected ratelimiting headers in the case when using an unauthorized client, in the form of: ```Rust fn main() { let mut app = App::new("someuseragent", "v0.1.0",...
I believe the integration style tests you have in [`src/test.rs`](orca/src/test.rs) should go in `tests/test.rs` (or whatever file name you want) because they will then be classified as "integration tests" by...
I'm not exactly sure how this would work.
Hi! I was wondering since this repo hasn't been updated in a couple of years, you'd be willing to release the name for use in crates.io. I have a project...