LuaOAuth icon indicating copy to clipboard operation
LuaOAuth copied to clipboard

A OAuth client library for Lua

Results 4 LuaOAuth issues
Sort by recently updated
recently updated
newest added

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...

is it?

wishlist

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...