This page is a place where developers can learn about what they can do using our APIs.
Place the following code on your site, under the <head> tag:
<script>
function shareTeskalePost(url, teskaleName) {
create_post_teskale = window.open('https://thebuzz.mytsi.org/compose/intent?text=' + url, teskaleName);
if (window.focus) {
create_post_teskale.focus();
}
return false;
}
</script>
Once placed, pass your site url to the function, example:
<button onclick="shareTeskalePost('http://yoursite.com/')">Click me</button>
Do you want to test?