DEV Community

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

Collapse
 
turry profile image
Turry

Thanks!

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