Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 6538

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 60k
Author
Asked: November 27, 20242024-11-27T07:28:10+00:00 2024-11-27T07:28:10+00:00

This article has 61 positive reactions and 24 comments

  • 60k

TL;DR

Using the DEV API the title of this article gets automatically updated every 60 seconds.

Addicted to numbers

I started blogging on DEV only some months ago. You could say, I am quite new to all of this. After writing an article I find myself frequently checking the numbers of reactions and comments. It seems like I am a bit of an addict. And I bet some of you are too.

We share an addiction. We're approval junkies.

— Jake Green, Revolver

It is not why I started this and I am sure it is not healthy. So I will try to stop and instead make this a bit of fun. Let's play around with the numbers.

APIs are the future

Back in 2010, I saw a tweet from Smashing Magazine asking about the future of the web. And I answered »APIs«, which is the same answer I would give today — 11 years later.

Let's have fun

It is so much fun working with well-implemented APIs and I was happy to find the DEV API as one of those.

My idea was simple:

  1. Get the properties of this article.
  2. Update the title using two of the properties (positive_reactions_count and comments_count).

The source

I use PHP, which is one of my favorite programming languages.

Get article properties

function getArticleProperties($articleId) {     // Prepare URL     $url = 'https://dev.to/api/articles/' . $articleId;      // Prepare headers     $headers = [         'api-key: 1234567890abcdef',     ];      // Prepare method     $method = 'GET';      // Execute request     $curlHandle = curl_init();     curl_setopt($curlHandle, CURLOPT_URL, $url);     curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);     curl_setopt($curlHandle, CURLOPT_CUSTOMREQUEST, $method);     curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);     $response  = curl_exec($curlHandle);     curl_close($curlHandle);      return json_decode($response, true); } 
Enter fullscreen mode Exit fullscreen mode

Update article title

function updateArticleTitle($articleId, $articleTitle) {     // Prepare URL     $url = 'https://dev.to/api/articles/' . $articleId;      // Prepare payload     $payload = json_encode(         [             'article' => [                 'title' => $articleTitle,             ],         ]     );      // Prepare headers     $headers = [         'Content-Type: application/json',         'Content-Length: ' . strlen($payload),         'api-key: 1234567890abcdef',     ];      // Prepare method     $method = 'PUT';      // Execute request     $curlHandle = curl_init();     curl_setopt($curlHandle, CURLOPT_URL, $url);     curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);     curl_setopt($curlHandle, CURLOPT_CUSTOMREQUEST, $method);     curl_setopt($curlHandle, CURLOPT_POSTFIELDS, $payload);     curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);     $response  = curl_exec($curlHandle);     curl_close($curlHandle); } 
Enter fullscreen mode Exit fullscreen mode

Putting it all together

// Prepare article ID $articleId = 715066;  // Get article properties using the API $articleProperties = getArticleProperties($articleId);  // Update article title using the API updateArticleTitle($articleId, 'This article has ' . $articleProperties['positive_reactions_count'] . ' positive reactions and ' . $articleProperties['comments_count'] . ' comments'); 
Enter fullscreen mode Exit fullscreen mode

A cronjob is executing this as a CLI script every 60 seconds.

Inspiration

This article is heavily inspired by an awesome YouTube video I saw earlier this year.

metashowdevwebdevwriting
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 2k
  • Popular
  • Answers
  • Author

    Insights into Forms in Flask

    • 0 Answers
  • Author

    Kick Start Your Next Project With Holo Theme

    • 0 Answers
  • Author

    Refactoring for Efficiency: Tackling Performance Issues in Data-Heavy Pages

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.