Anders Pitman

Results 200 comments of Anders Pitman

In the last few weeks I found another library that follows a similar pattern to oauth2-rs/openidconnect-rs: https://github.com/sugyan/atrium. Atrium makes multiple network requests internally, but it's simple to provide your own...

I'm actually targeting backend, not frontend. I'm building an authentication library for multiple languages. Currently have it working for JS, Go, and Rust, but adding support for any of the...

You mean compile the Rust to FFI via extern C? Primarily because wasm is far more portable (especially for JS and Golang). You can run the same wasm binary unchanged...

Say I'm building a JS app and want to add ATProto login. I need to find a JS library that supports that. Next imagine I'm writing a Golang app and...

Technically, yes. But this is becoming more and more common. ATrium and oauth2-rs already were compatible. And there are other benefits to designing APIs this way. It makes things more...

Came here to open an issue to request exactly this functionality. Somewhat different use case though. Imagine a blogging platform with a built-in CMS. You want fast reads globally, but...

Yeah that makes sense @tarasglek. I opened an issue for it. @hnw re: confidential clients. LastLogin is almost entirely stateless (other than rate limiting), so I'm not really sure of...

Just want to provide another use case. I'm working on an authentication library that can be used with multiple languages (currently JS, Go, and Rust). Rather than rewrite things like...

I would also be interested in this (and potentially able to contribute). My angle is portability. It would be fantastic to have a build of ffmpeg that works across programming...

This is all excellent info and suggestions. Thank you! You guys really go above and beyond for an open source project. I'd love to contribute something back. @nilslice what sort...