Skip to main content

hootsuite-hello-world

Demonstrates how to integrate with Hootsuite API to manage social media profiles and schedule posts effectively.

Install this skill

or
54/100

Security score

The hootsuite-hello-world skill was audited on May 18, 2026 and we found 14 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 48

Template literal with variable interpolation in command context

SourceSKILL.md
48const response = await fetch(`${BASE}/socialProfiles`, {
medium line 49

Template literal with variable interpolation in command context

SourceSKILL.md
49headers: { 'Authorization': `Bearer ${TOKEN}` },
medium line 54

Template literal with variable interpolation in command context

SourceSKILL.md
54console.log(`${profile.type}: @${profile.socialNetworkUsername} (ID: ${profile.id})`);
medium line 66

Template literal with variable interpolation in command context

SourceSKILL.md
66const response = await fetch(`${BASE}/messages`, {
medium line 69

Template literal with variable interpolation in command context

SourceSKILL.md
69'Authorization': `Bearer ${TOKEN}`,
medium line 99

Template literal with variable interpolation in command context

SourceSKILL.md
99const response = await fetch(`${BASE}/messages?state=SCHEDULED&limit=10`, {
medium line 100

Template literal with variable interpolation in command context

SourceSKILL.md
100headers: { 'Authorization': `Bearer ${TOKEN}` },
medium line 104

Template literal with variable interpolation in command context

SourceSKILL.md
104console.log(`[${msg.state}] ${msg.text?.substring(0, 60)}... → ${msg.scheduledSendTime}`);
low line 44

Access to .env file

SourceSKILL.md
44const TOKEN = process.env.HOOTSUITE_ACCESS_TOKEN!;
low line 28

External URL reference

SourceSKILL.md
28List your social media profiles and schedule a post using the Hootsuite REST API. The API base URL is `https://platform.hootsuite.com/v1/`.
low line 45

External URL reference

SourceSKILL.md
45const BASE = 'https://platform.hootsuite.com/v1';
low line 114

External URL reference

SourceSKILL.md
114https://platform.hootsuite.com/v1/socialProfiles | python3 -m json.tool
low line 118

External URL reference

SourceSKILL.md
118https://platform.hootsuite.com/v1/me | python3 -m json.tool
low line 139

External URL reference

SourceSKILL.md
139- [Social Profiles API](https://apidocs.hootsuite.com/docs/api/index.html)
Scanned on May 18, 2026
View Security Dashboard
Installation guide →