The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Cookbook

Some examples of how to use the client.

Recipies

Authenticate Yourself

Make sure you've enabled the Developer flag in your Wing user account and requested an API key. Then you can authenticate like this:

 my $session = $wing->post('session', { 
    username    => 'me', 
    password    => '123qwe', 
    api_key_id  => 'abcdefghijklmnopqrztuz',
 });