# 1775426181-uityui-mastodon-social-reply

[//]: # (reply-to: https://mastodon.social/ap/users/116127512056030326/statuses/116354221694747671)

Did you also fill up `title` and `author`? It could be that ActivityPub gets annoyed with actors with empty names.

Besides that, your configuration looks alright and not very different from the one I use for this blog.

Possible investigation routes:

1. Could you share (privately if you wish) the URL of your blog so I can run a couple of federation tests?

2. What's the response of the actor and Webfinger requests? (ActivityPub discovery depends on that)

```bash
 # Check the blog ActivityPub actor
curl -s -H 'Accept: application/ld+json' https://blog.example.com/ap/actor

 # Check the WebFinger response
curl -s  -H 'Accept: application/jrd+json' 'https://blog.example.com/.well-known/webfinger?resource=acct:@username@blog.example.com'
```
