Beispiel #1
0
from lib.config import * #contains apikey
from lib.MGAPI import MGAPI

# This Example shows how to ping using the MGAPI.php class and do some basic error checking.

api = MGAPI(apikey)

username = "******"
password = "******"

retval = api.login(username, password)
if api.errorCode:
	print "Unable to get API key!"
	print "\tCode=", api.errorCode
	print "\tMsg=", api.errorMessage
else:
	print "Returned API key: ", retval