Jump to content

AutoIt accesses REST-API of plan.io (Redmine)


jandings
 Share

Recommended Posts

Hello there,

and one more: how to access the REST-API of the project management system plan.io (which is based on Redmine), I'd like to share a few lines to make life easier for others.

With this you can access your plan.io data, reading and writing all kind of data. 

Replies are JSON style (though XML is possible, that's an option)

To work with JSON I usually depend on either just own AutoIt string operations or this AutoIt library, which I find best 11.2017:

; File        : Json.au3 (2015.01.08)
; Purpose    : A Non-Strict JavaScript Object Notation (JSON) Parser UDF
; Author    : Ward

$UserName="xxxxxx"                          ;plan.io credentials (usually e-mail address)
$PassWord="xxxx"                            ;plan.io credentials
$APIKey="xxxxxxxxxxxxxxx"                   ;This is the API Key from PlanIO, you can get it from the frontend, just google or ask plan.io help
$URL="xxxx.plan.io/"
$Command="issues.json?limit=50"             ;A list of commands and options is available through plan.io REST-API help

$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("GET", "https://" & $URL & $Command &" X-Redmine-API-Key: " & $APIKey, False)
$oHTTP.SetCredentials($UserName, $PassWord, 0)
$oHTTP.Send()
$response = $oHTTP.ResponseText
ConsoleWrite ($response & @CRLF & @CRLF)
Link to comment
Share on other sites

  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...