FanFou
https://github.com/FanfouAPI/FanFouAPIDoc/wiki/Oauth
NAME
FanFou - Perl 6 oauth client for fanfou.com.
SYNOPSIS
use FanFou;
my %oauth_consumer = key => 'your_consumer_key', secret => 'your_secret_key';
# get fanfou client
my $client = FanFou::XAuth.new(oauth_consumer => %oauth_consumer, username => 'your_username', password => 'your_password');
# get response
my $resp = from-json await $client.request('/statuses/home_timeline', 'GET').body-text;
say $resp.perl;
# post a message
my %body = 'status' => 'Hi, fan, I'm a robot';
$client.request('/statuses/update', 'POST', %body);
DESCRIPTION
FanFou is oauth client for http://fanfou.com
AUTHOR
<ohmycloud>
COPYRIGHT AND LICENSE
Copyright 2018
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.