oauthenticated alternatives and similar packages
Based on the "Networking" category.
Alternatively, view oauthenticated alternatives based on common mentions on social networks and blogs.
-
snap-core
Core type definitions (Snap monad, HTTP types, etc) and utilities for web handlers. -
websockets
A Haskell library for creating WebSocket-capable servers -
snap-server
A fast HTTP server library, which runs Snap web handlers. -
call-haskell-from-anything
Call Haskell functions from any programming language via serialization and dynamic libraries -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
network-transport-zeromq
ZeroMQ transport for distributed-process (aka Cloud Haskell) -
io-streams
Simple, composable, and easy-to-use stream I/O for Haskell -
HaskellNet
Haskell library which provides client support for POP3, SMTP, and IMAP protocols. -
glirc
Haskell IRC library and console client - Join us on libera.chat #glirc -
ngx-export
A comprehensive web framework aimed at building custom Haskell handlers for the Nginx Web Server -
http-types
Generic HTTP types for Haskell (for both client and server code) -
http-streams
Haskell HTTP client library for use with io-streams -
graphula
A simple interface for generating persistent data and linking its dependencies -
secure-sockets
A library for making secure connections between servers. -
network-transport-tcp
TCP Realisation of Network.Transport -
linklater
A Haskell library for the Slack API (including real-time messaging!)
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of oauthenticated or a related project?
README
Oh! Authenticated!
OAuth is a popular protocol allowing servers to offer resources owned by some user to a series of authorized clients securely. For instance, OAuth lets Twitter provide access to a user's private tweets to the Twitter client registered on their phone.
oauthenticated
is a Haskell library implementing OAuth protocols
atop the popular http-client
HTTP client library. The goal is to
provide a general framework for signing
'Network.HTTP.Client.Request's according to server parameters, a
simple method for executing the common 3-arm OAuth token negotiation
protocol, and a simplified API for accessing OAuth-protected
resources.
Currently oauthenticated
only supports OAuth 1.0 and is in
alpha. Further testing is needed before trustworthy use can be
established. Further, OAuth 2.0 support is planned.
Example
See the examples
directory for a script making a OAuth call to a URL
with default parameters. Run stack examples/oauth-authenticate.hs
--help
for usage.
Three-legged Protocol
Warning: the implementation in ThreeLegged.hs has not been tested since recent refactoring and may or may not do anything useful.