DEV Community

Cover image for Create Your Own Blog with DevTO API
Dale Nguyen
Dale Nguyen

Posted on

Create Your Own Blog with DevTO API

I joined DevTO since June 2019. It's quite an interesting platform where programmers share ideas and help each other grow. It is an online community for sharing and discovering great ideas, having debates, and making friends. Anyone can share articles, questions, discussions, etc. as long as they have the rights to the words they are sharing. Cross-posting from your own blog is welcome - quote from the About page.

I wrote a few posts on the platform and I actually like it. And more intriguing, I discovered their API (beta version), which allows me to get the articles in JSON format.

I knew that I can to put all the posts from DevTO to my newly rebuilt website. And there are some challenges that need to be resolved:

  • How should it look like on my website?
  • How can I display the "all the post" page?
  • How can I display the article page?

Fortunately, I have everything in mind, and I already put them into action. Here is how I did it with Angular, and you can do with any framework you prefer.

How should it look like on my website?

I try to make it simple and readable on every different device. You can do some research and decide how do you want to style your own blog.

How can I display the "all the post" page?

The endpoint where I can get all the articles is Published articles. With the parameter "username", I can return all the articles written by me.

https://dev.to/api/articles?username=dalenguyen
Enter fullscreen mode Exit fullscreen mode

This is the sample return:

[
   {
      "type_of":"article",
      "id":186759,
      "title":"Create Your Website For FREE with Github Pages - Angular",
      "description":"---",
      "cover_image":"---",
      "published_at":"2019-10-09T13:19:07.906Z",
      "tag_list":[
         "angular",
         "github",
         "beginners",
         "webdev"
      ],
      "slug":"create-your-website-for-free-with-github-pages-angular-1c05",
      "path":"/dalenguyen/create-your-website-for-free-with-github-pages-angular-1c05",
      "url":"---",
      "canonical_url":"---",
      "comments_count":0,
      "positive_reactions_count":39,
      "published_timestamp":"2019-10-09T13:19:07Z",
      "collection_id":null,
      "user":{
         "name":"Dale Nguyen",
         "username":"dalenguyen",
         "twitter_username":null,
         "github_username":"dalenguyen",
         "website_url":"https://dalenguyen.me",
      }
   },
--------------
]
Enter fullscreen mode Exit fullscreen mode

It only provides basic information without the body of the article. The ones that I use are id, title, path, description, cover_image. You will know why I need the id in the next section. This how I display it on my blog.

Blog display

For the content, getting the JSON from the API is pretty easy with HttpClient.

// blog.service.ts
try {
      articles = await this.http.get('https://dev.to/api/articles?username=dalenguyen').toPromise()
} catch (error) {
      console.error(error)
}
Enter fullscreen mode Exit fullscreen mode

Then show it with Angular Material

// blog.component.html
<div id="blog">
  <h1>Blog</h1>
<section id="articles" *ngIf="articles.length > 0">
    <mat-card class="example-card" *ngFor="let article of articles">
      <mat-card-header>
        <mat-card-title>{{ article.title }}</mat-card-title>
      </mat-card-header>
      <img mat-card-image src="{{ article.cover_image }}" alt="{{ article.title }}">
      <mat-card-content>
        <p>
          {{ article.description }}
        </p>
      </mat-card-content>
      <mat-card-actions>
        <button mat-button (click)="openPost(article)">READ MORE</button>
      </mat-card-actions>
    </mat-card>
  </section>
</div>
Enter fullscreen mode Exit fullscreen mode

For getting to the single article, I will use the id in order to get the content of the article.

// blog.compoment.ts
openPost(article: any) {
    this.router.navigate(['/blog', article.slug], { queryParams: { id: article.id }})
}
Enter fullscreen mode Exit fullscreen mode

How can I display the article page?

This is the tricky part because I will need to make another request in order to get the content of a single post - and the id is used for this purpose.

// post.service.ts
try {
      article = await this.http.get('https://dev.to/api/articles/186759').toPromise()
} catch (error) {
      console.error(error)
}
Enter fullscreen mode Exit fullscreen mode

and for the HTML part

// post.component.html
<div id="post" *ngIf="article !== null">
  <header>
    <h1>{{ article.title }}</h1>
    <p>Written by {{ article.user.name }}</p>
    <p> {{ article.published_at | date }}</p>
  </header>
<article [innerHTML]="articleBody">
  </article>
</div>
Enter fullscreen mode Exit fullscreen mode

For embedded URLs from the article, how can I deal with it? If I just leave it, I will lead to DevTO website, and I really don't want that. So before serving the HTML to the front end, I have to replace the domain name from DevTo to my website.

// post.component.ts
private cleanArticleContent(html: string): string {
    return html.replace(/https:\/\/dev.to\/dalenguyen/g, 'https://dalenguyen.me/blog')
}
Enter fullscreen mode Exit fullscreen mode

For the id part, you have to add the Id manually whenever you have an embedded link on DevTO.

https://dev.to/dalenguyen/want-to-build-a-career-in-tech-start-with-your-website-44i7?id=185197
Enter fullscreen mode Exit fullscreen mode

The id can be found when you open the inspect and go to the Network tab.

Post id

From now, you can create your own blog which the content from DevTO - it will take a few hours until the article can be shown on your website. You can find the project from my Github account.

Latest comments (1)

Collapse
 
cedricmurairi profile image
Cédric Murairi

Great content. For me I am planning on doing same with react on my portfolio website then I also want to be able to create articles from my website if I want to. I do not know if that is possible!