Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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).
- Host: GitHub
- URL: https://github.com/blooddy/blooddy_api
- Owner: blooddy
- License: mit
- Created: 2016-10-16T14:19:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-24T11:18:10.000Z (about 8 years ago)
- Last Synced: 2024-06-23T20:45:47.981Z (5 months ago)
- Language: ActionScript
- Size: 85 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-actionscript-sorted - blooddy_api - ActionScript (AS3) library for working with API (vk.com, soundcloud.com, last.fm). (API / Other API)
README
Examples
--------
```actionscriptimport 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 );
}
);```