DEV Community

Discussion on: Push all posts of dev.to into Webhooks

Collapse
 
thomasbnt profile image
Thomas Bnt β˜•

Thank you for reading the article and leaving a comment ! β˜•πŸ‘πŸΌ

Collapse
 
turry profile image
Turry

Is there a way to mention part of the content of the article post like
β€œHello everybody, today I wanted to share a tool that most people probably know…” with a link on the header so that when you click on the header it redirects to the article on the browser?

Thread Thread
 
thomasbnt profile image
Thomas Bnt β˜•

With embeds messages ?

Maybe that could be usefull for you :

{ 
    "embeds": [{ 
        "author":{ 
            "name":"Hello everybody, today I wanted to share a tool that most people probably know…", 
            "url":"{{EntryUrl}}" 
            }
    }] 
}
Enter fullscreen mode Exit fullscreen mode