Coder Social home page Coder Social logo

Comments (4)

seansbox avatar seansbox commented on May 12, 2024 1

I think this is a good approach. The verbosity is a good balance of flexibility and simplicity. Any reason to have to instantiate an object versus just having an httprequest function? Are there any stateful parameters or other methods? Looks like only autonomous function calls.

from algernon.

xyproto avatar xyproto commented on May 12, 2024

With the httpclient branch it is now possible to perform GET requests like this:

HTTPClient():Get("http://www.guimp.com/")

Or by using a variable for the HTTPClient:

hc = HTTPClient()
hc:Get("http://www.guimp.com/")

Or with URL arguments:

HTTPClient():Get("https://jsonplaceholder.typicode.com/comments", {postId=1, id=2})

Or with URL arguments and HTTP headers:

HTTPClient():Get("https://www.whatismybrowser.com/detect/what-http-headers-is-my-browser-sending", {x=42}, {["X-PoweredBy"]="Bits and bytes"}):match('POWEREDBY.*</td>')

Or POST requests like this:

HTTPClient():Post("https://jsonplaceholder.typicode.com/posts", {}, {["Content-type"]="application/json; charset=UTF-8"}, JSON({title="foo", body="bar", userId=1}))

Does this seem like a somewhat viable approach, or is it too verbose?

from algernon.

xyproto avatar xyproto commented on May 12, 2024

I added GET, POST and DO as shorthand functions, to the httpclient branch,

Unfortunately, the HTTPClient settings like timing and language seems to be possible to set only once, so I'll have to restructure how the object is stored before this will work, before merging.

from algernon.

xyproto avatar xyproto commented on May 12, 2024

Closing this issue as fixed, please re-open this issue if there should be further issues with this.

from algernon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.