You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/OAuth.lua
+4
Original file line number
Diff line number
Diff line change
@@ -465,6 +465,8 @@ end
465
465
-- @param url is the url to request
466
466
-- @param arguments is an optional table whose keys and values will be encoded as "application/x-www-form-urlencoded"
467
467
-- (when doing a POST) or encoded and sent in the query string (when doing a GET).
468
+
-- It can also be a string with the body to be sent in the request (usually a POST). In that case, you need to supply
469
+
-- a valid Content-Type header.
468
470
-- @param headers is an optional table with http headers to be sent in the request
469
471
-- @param callback is only required if running under LuaNode. It is a function to be called with an (optional) error object and the result of the request.
470
472
-- @return nothing if running under Luanode (the callback will be called instead). Else, the http status code
@@ -506,6 +508,8 @@ end
506
508
-- @param url is the url to request
507
509
-- @param arguments is an optional table whose keys and values will be encoded as "application/x-www-form-urlencoded"
508
510
-- (when doing a POST) or encoded and sent in the query string (when doing a GET).
511
+
-- It can also be a string with the body to be sent in the request (usually a POST). In that case, you need to supply
512
+
-- a valid Content-Type header.
509
513
-- @param headers is an optional table with http headers to be sent in the request
510
514
-- @return a table with the headers, a table with the (cleaned up) arguments and the request body.
0 commit comments