LuaOAuth
LuaOAuth copied to clipboard
A OAuth client library for Lua
The `generate_nonce` function uses a very questionable method for random number generation. The schema is `hmac(math.random() + "random" + os.time(), "keyyy")`. I am not familiar with the security requirements for...
Hi Ignacio, The current rockspec doesn't support 5.3 and when trying to install it, it falls back on much older versions of dependencies. Can you please update the rockspec to...
You can't use redirection with https and luasocket. Fix: Add redirect = false to request_constructor Just after doing the http(s) request: if response_code == 301 or response_code == 302 then...