blooddy / blooddy_api

ActionScript (AS3) library for working with API (vk.com, soundcloud.com, last.fm).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Examples

import by.blooddy.api.desktop.VK;

var vk:VK = new VK( {
	username:	'username',
	password:	'password',
	scope:		'groups,audio,status',
	api_id:		api_id
} );


vk.query(
	'audio.get', { owner_id: -34963172 },
	function(result:Object):void {
		trace( result );
	},
	function(e:Error):void {
		trace( e );
	}
);

About

ActionScript (AS3) library for working with API (vk.com, soundcloud.com, last.fm).

License:MIT License


Languages

Language:ActionScript 100.0%