hootsuite-hello-world
Demonstrates how to integrate with Hootsuite API to manage social media profiles and schedule posts effectively.
Install this skill
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
Template literal with variable interpolation in command context
| 48 | const response = await fetch(`${BASE}/socialProfiles`, { |
Template literal with variable interpolation in command context
| 49 | headers: { 'Authorization': `Bearer ${TOKEN}` }, |
Template literal with variable interpolation in command context
| 54 | console.log(`${profile.type}: @${profile.socialNetworkUsername} (ID: ${profile.id})`); |
Template literal with variable interpolation in command context
| 66 | const response = await fetch(`${BASE}/messages`, { |
Template literal with variable interpolation in command context
| 69 | 'Authorization': `Bearer ${TOKEN}`, |
Template literal with variable interpolation in command context
| 99 | const response = await fetch(`${BASE}/messages?state=SCHEDULED&limit=10`, { |
Template literal with variable interpolation in command context
| 100 | headers: { 'Authorization': `Bearer ${TOKEN}` }, |
Template literal with variable interpolation in command context
| 104 | console.log(`[${msg.state}] ${msg.text?.substring(0, 60)}... → ${msg.scheduledSendTime}`); |
Access to .env file
| 44 | const TOKEN = process.env.HOOTSUITE_ACCESS_TOKEN!; |
External URL reference
| 28 | List your social media profiles and schedule a post using the Hootsuite REST API. The API base URL is `https://platform.hootsuite.com/v1/`. |
External URL reference
| 45 | const BASE = 'https://platform.hootsuite.com/v1'; |
External URL reference
| 114 | https://platform.hootsuite.com/v1/socialProfiles | python3 -m json.tool |
External URL reference
| 118 | https://platform.hootsuite.com/v1/me | python3 -m json.tool |
External URL reference
| 139 | - [Social Profiles API](https://apidocs.hootsuite.com/docs/api/index.html) |