DP News-Robot |
28. Sep 2018 09:30 |
Delphi XERO – Redirect to GitHub and New Features
https://github.com/littleearth/delphiXERO Components TXEROAppDetails Store XERO credentials FXEROAppDetails.Privatekey.Text := 'MIICXgIBAAKBgQ....'; FXEROAppDetails.ConsumerKey := 'A12345'; FXEROAppDetails.ConsumerSecret := 'A54321'; TXEROApiJSON Provide a simple interface for calling the XERO API Get var LXEROAPI: TXEROApiJSON; begin LXEROAPI := TXEROApiJSON.Create(nil); try LXEROAPI.XEROAppDetails := FXEROAppDetails; LJSON := LXEROAPI.Get('Contacts','page=1');...
|