Skip to main content
Jagdish Kumawat
Founder @ Dewiride
View all authors

SSH Permission Denied (Publickey) on GitHub: Complete Troubleshooting Guide

· 8 min read
Jagdish Kumawat
Founder @ Dewiride

Seeing Permission denied (publickey) when connecting to GitHub means GitHub could not authenticate your SSH connection with any key your computer offered. The usual causes are an unloaded key, an incorrect remote URL, a key attached to another GitHub account, or an SSH configuration problem.

This guide checks each cause in the fastest order so you can get git clone, git pull, and git push working again.

Fix: ILogger Type Mismatch in AdapterWithErrorHandler CloudAdapter

· 2 min read
Jagdish Kumawat
Founder @ Dewiride

When creating an AdapterWithErrorHandler class that inherits from CloudAdapter, you might encounter this compile error:

Argument 3: cannot convert from 'Microsoft.Extensions.Logging.ILogger<Microsoft.Agents.Hosting.AspNetCore.IAgentHttpAdapter>' to 'Microsoft.Extensions.Logging.ILogger<Microsoft.Agents.Hosting.AspNetCore.CloudAdapter>'

This happens because you're passing ILogger<IAgentHttpAdapter> to the CloudAdapter base constructor, but it expects ILogger<CloudAdapter>.

Stay Updated

Subscribe to our newsletter for the latest tutorials, tech insights, and developer news.

By subscribing, you agree to our privacy policy. Unsubscribe at any time.