Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blooddy/blooddy_api

ActionScript (AS3) library for working with API (vk.com, soundcloud.com, last.fm).
https://github.com/blooddy/blooddy_api

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

Examples
--------
```actionscript

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 );
}
);

```