Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion socket_basics/socket_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,12 @@ def submit_socket_facts(self, socket_facts_path: Path, results: Dict[str, Any])

socket_org = self.config.get('socket_org')
if not socket_org:
logger.debug("No Socket organization configured, skipping full scan submission")
logger.warning(
"No Socket organization configured - scan results will not be uploaded to the dashboard. "
"This typically means your API key is missing the 'socket-basics:read' scope. "
"Please create an API key with the required scopes in Settings > API Tokens "
"in the Socket dashboard (https://socket.dev)."
)
return results

# Import socketdev SDK
Expand Down