Add comments to your website in 5 minutes
This guide walks you through integrating Talky into your website. No technical experience required—just follow each step and you'll be up and running.
Go to talky.adilmayank.com and click "Get Started with Google".
You'll be redirected to Google. Select your account to continue.
Click "Continue" to allow Talky to access your email for authentication.
Talky only accesses your email to create your account. We never share your data with third parties.
After signing in, you'll be taken to your dashboard. This is where you manage your API key.
Click the copy button next to your API key. It looks like xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.
Your API key is a unique identifier, not a secret. It needs to be included in your website's code to work. The security comes from domain restrictions—only your allowed domains can post comments.
Now comes the fun part—adding comments to your site. Paste this code just before the closing </body> tag of your webpage:
<!-- Paste this before </body> tag -->
<div id="talky-slot">
<script async defer src="https://talky.adilmayank.com/v1/talky.js" data-key="YOUR_API_KEY_HERE"></script>
</div>
Replace YOUR_API_KEY_HERE with your actual API key from Step 2.
Here's what it looks like in a complete HTML file:
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
</head>
<body>
<h1>Welcome to my blog!</h1>
<p>Thanks for visiting.</p>
<!-- Talky Comments -->
<div id="talky-slot">
<script async defer src="https://talky.adilmayank.com/v1/talky.js" data-key="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"></script>
</div>
</body>
</html>
Add the code in your page component (e.g., pages/index.js or app/page.tsx):
// In your component JSX/TSX
<div>
<h1>My Blog Post</h1>
<p>Content here...</p>
{/* Talky Comments */}
<div id="talky-slot">
<script
async
defer
src="https://talky.adilmayank.com/v1/talky.js"
data-key="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
/>
</div>
</div>
Go to Appearance → Widgets → Custom HTML and add:
<div id="talky-slot">
<script async defer src="https://talky.adilmayank.com/v1/talky.js" data-key="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"></script>
</div>
Visit the page where you added Talky. You should see a comment box at the bottom.
Type a message and click "Post Comment". Sign in with Google if prompted.
Go back to your Talky dashboard—you should see your test comment listed.
From your dashboard, you can control how Talky works on your site.
Only allow comments from specific domains:
Setting up domain restrictions prevents others from using your API key on unauthorized websites.
<div id="talky-slot">
<script async defer src="https://talky.adilmayank.com/v1/talky.js" data-key="YOUR_KEY"></script>
</div>
Questions or issues? Reach out or check the About page for more info.