Skip to content

joshuacc/simple-http

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple HTTP for AutoHotkey

A simple http interface for AutoHotkey.

Installation

The recommended approach for installation is to use ahkpm.

ahkpm install gh:joshuacc/simple-http

Usage

; Import the SimpleHTTP class
#Include, %A_ScriptDir%\ahkpm-modules\github.com\joshuacc\simple-http\simple-http.ahk

; Create a new instance
http := new SimpleHTTP()

; Send a GET request
http.get("https://api.github.com/users/joshuacc")

; Send a POST request with data
http.POST("https://example.com", "myexample=pretty-cool")