liboauth

C library for OAuth Core RFC 5849 authentication protocol

brewmacoslinux
Try with needOr install directly
Source

About

C library for the OAuth Core RFC 5849 standard

Examples

check if liboauth is installed and see version info$ pkg-config --modversion oauth
view available OAuth library functions and headers$ pkg-config --cflags --libs oauth
compile C program that uses OAuth authentication$ gcc myapp.c $(pkg-config --cflags --libs oauth) -o myapp
find OAuth library documentation and files on system$ brew info liboauth
build project with OAuth support using autoconf$ ./configure && make