BoxLang 🚀 A New JVM Dynamic Language Learn More...
This CF wrapper can be installed as standalone or as a ColdBox Module. Either approach requires a simple CommandBox command:
box install wunderlist
Then follow either the standalone or module instructions below.
This wrapper will be installed into a directory called wunderlist and then can be instantiated via new wunderlist.wunderlist() with the following constructor arguments:
     clientId    	=	'',
     clientSecret   =	'',
     accessToken	=	''
This package also is a ColdBox module as well. The module can be configured by creating a wunderlist configuration structure in your application configuration file: config/Coldbox.cfc with the following settings:
wunderlist = {
     clientId    	=	'',
     clientSecret   =	'',
     accessToken	=	''
};
Then you can leverage the CFC via the injection DSL: wunderlist@wunderlist
								$ 
									box install wunderlist