Skip to content

Instantly share code, notes, and snippets.

@incarnate
incarnate / eWAY_VB.vb
Created October 13, 2016 01:24
eWAY Rapid VB.NET console app example
' Simple VB.NET Console application to perform a
' Rapid Direct Connection transaction and then query the
' Transaction ID.
'
' This example uses the eWAY Rapid .NET package from NuGet
' https://www.nuget.org/packages/eWAY.Rapid/
'
' eWAY: https://www.eway.com.au
Imports eWAY.Rapid
@incarnate
incarnate / eway_logger_example.php
Last active March 30, 2016 22:31
Examples of using eWAY's PHP SDK with logging
<?php
// Using the provided eWAY logger
// This logger logs to PHP's error log using error_log()
// Usually this will be in Apache's error log, but it will depend on your host.
$ewayLogger = new \Eway\Rapid\Service\Logger();
$apiKey = '60CF3Ce97nRS1Z1Wp5m9kMmzHHEh8Rkuj31QCtVxjPWGYA9FymyqsK0Enm1P6mHJf0THbR';
$apiPassword = 'API-P4ss';
$apiEndpoint = \Eway\Rapid\Client::MODE_SANDBOX;
@incarnate
incarnate / magento2_deep_dive.md
Last active November 19, 2015 01:55
Magento 2 Deep Dive @ Magento Live 2015

Magento 2 Deep Dive @ Magento Live 2015

19/11

Notes by John C - come say hi at the eWAY stand!

Alan Kent - Chief Architect

@akent99 http://alankent.me

Magento 2 Integration

@incarnate
incarnate / eway_example.swift
Last active November 5, 2019 07:24
Examples of using eWAY's iOS SDK in a Swift project.
/**
Example functions using the eWAY iOS SDK in Swift
To use the eWAY iOS SDK with a Swift project, simply:
1. Add the eWAY SDK using CocoaPods as usual
2. Add the Objective-C bridging header file
3. Add RapidAPI.h to the bridging header file
For more info on using Objective C with Swift, see:
@incarnate
incarnate / eway.js
Created June 24, 2015 06:10
eWAY Node.js + Express demo
/**
* eWAY Node.js demo
*
* Uses Node.js, Express & Restler to demonstrate connecting to eWAY Rapid API
* This file is a route, it calls a view called eway to display the data (not included)
*
* https://www.eway.com.au
*
* https://nodejs.org/
* http://expressjs.com/
@incarnate
incarnate / README.md
Created December 7, 2014 00:54
LiveChat visitors Dashing widget

##Preview

Description

Simple Dashing widget to display LiveChat visitors status (number chatting and number queued).

If the number of visitors waiting to chat is more than 0, a red highlight is displayed.

@incarnate
incarnate / README.md
Created December 6, 2014 12:57
LiveChat agents Dashing widget

##Preview

Description

Simple Dashing widget to display LiveChat agents status (number online and number accepting chats).

If the number of agents accepting chats drops to 0, a red highlight is displayed.

@incarnate
incarnate / xerooauth_public_demo.php
Last active March 4, 2016 02:07
An extension of the XeroOAuth-PHP public.php file demonstrating the complete OAuth process along with creating an invoice
<?php
/**
* Xero invoice creation demo
*
* Written to help provide an answer to this Stack Overflow question: http://stackoverflow.com/q/26250530/628267
*/
// Includes and defines
include 'XeroOAuth-PHP/lib/XeroOAuth.php';

One small step for

-man
+humankind

eWAY PHP Library

THIS IS A DRAFT OF THE GITHUB eWAY PHP API README!

This library provides integration with the eWAY payment gateway Rapid API 3.1.

Requirements

  • PHP 5.3 or greater