NAME

WebService::TogetherWeRemember - Together We Remember!

VERSION

Version 0.03

SYNOPSIS

use WebService::TogetherWeRemember;

my $twr = WebService::TogetherWeRemember->new();

my $api = $twr->login($email, $password);

my $timeline = $api->timeline_create({
	name => "My First Timeline",
	description => $markdown_text,
	image => '/path/to/image.png',
	related_links => [
		{ label => "lnation", url => "https//lnation.org" }
	],
	passphrase => "123",
	is_public => 1,
	is_published => 0,
	is_open => 0,
});

my $memory = $api->memory_create($timline->{timeline}->{id}, {
	title => "My First Memory",
	content => $markdown_text,
	date => time,
	related_links => [
		{ label => "lnation", url => "https//lnation.org" }
	],
});

$api->memory_asset($timeline->{timeline}->{id}, $memory->{memory}->{id}, '/path/to/asset.mp4', 5 * 1024 * 1024);

$api->logout();

See WebService::TogetherWeRemember::v0::API for documentation.

Together We Remember

AUTHOR

LNATION, <email at lnation.org>

BUGS

Please report any bugs or feature requests to bug-webservice-togetherweremember at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-TogetherWeRemember. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WebService::TogetherWeRemember

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

This software is Copyright (c) 2025 by LNATION.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)