Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jonathanstowe/webservice-soundcloud

Provide a Raku interface to the Soundcloud REST API.
https://github.com/jonathanstowe/webservice-soundcloud

api json raku soundcloud webservice

Last synced: 27 days ago
JSON representation

Provide a Raku interface to the Soundcloud REST API.

Awesome Lists containing this project

README

        

# WebService::Soundcloud

Provide a Raku interface to the Soundcloud REST API.

![Build Status](https://github.com/jonathanstowe/WebService-Soundcloud/workflows/CI/badge.svg)

## Synopsis

You can use the Full OAuth flow:

```raku

use WebService::Soundcloud;

my $scloud = WebService::Soundcloud.new(:$client-id, :$client-secret, redirect-uri => 'http://mydomain.com/callback' );

# Now get authorization url
my $authorization_url = $scloud.get-authorization-url();

# Now your appplication should redirect the user to the authorization uri
# When the User has authenticated and approved the connection they will
# in turn be redirected back to your redirect URI with either the grant code
# (as code) or an error (as error) as query parameters

# Get Access Token with the code provided as query parameter to the redirect
my $access_token = $scloud.get-access-token($code);

# Save access_token and refresh_token, expires_in, scope for future use
my $oauth_token = $access_token;

# a GET request '/me' - gets users details
my $user = $scloud->get('/me');

# a PUT request '/me' - updated users details
my $user = $scloud->put('/me', to-json( { user => { description => 'Have fun with the Raku wrapper to Soundcloud API' } } ) );

# Comment on a Track PoSt request usage
my $comment = $scloud->post('/tracks//comments',
{ body => 'I love this hip-hop track' } );

# Delete a track
my $track = $scloud->delete('/tracks/{id}');

```

or you can use direct credential based authorisation that can skip the redirections:

```raku

use WebService::Soundcloud;

my $sc = WebService::Soundcloud.new(:$client-id,:$client-secret,:$username,:$password);

# Because the credentials were provided the access-token can be requested directly
# without the need for a grant code
my $token = $sc.get-access-token();
my $me = $sc.get-object('/me');
my $tracks = $sc.get-list('/me/tracks');

```

## Description

This provides an interface to the [Soundcloud
API](https://developers.soundcloud.com/docs/api/reference), managing
the authorisation, connection and marshalling of the data.

You can build client side applications that authenticate with user
credentials or server applications that use the full OAuth authorization.

In order to use this module you will need to register your application
with Soundcloud at http://soundcloud.com/you/apps : your application will
be given a client ID and a client secret which you will need to use to
connect. The client ID used in the tests will not work correctly for your
own application as the callback URI is set to 'localhost'.

## Installation

If you have a working Rakudo installation can install directly with "zef":

# From the source directory

zef install .

# Remote installation

zef install WebService::Soundcloud

## Support

Suggestions/patches are welcomed via github at:

https://github.com/jonathanstowe/WebService-Soundcloud/issues

## Licence

This is free software.

Please see the [LICENCE](LICENCE) file in the distribution

© Jonathan Stowe 2015 - 2021