{"id":1850,"date":"2024-02-19T11:29:39","date_gmt":"2024-02-19T11:29:39","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1850"},"modified":"2024-02-29T11:50:01","modified_gmt":"2024-02-29T11:50:01","slug":"youtube-subscriber-count-in-reactjs","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/","title":{"rendered":"Youtube Subscriber Count in ReactJs"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"315\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png\" alt=\"\" class=\"wp-image-1851\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png 600w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126-300x158.png 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/figure>\n\n\n\n<p id=\"3f73\">In this tutorial i\u2019m going to learn how to count YouTube Subsribers count, views count as well, as define below.<\/p>\n\n\n\n<p id=\"6a3d\">In order to install your app, first go to your workspace (desktop or a folder) and run the following command:<\/p>\n\n\n\n<p id=\"b921\">Go to your visual code and open terminal there as below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"405\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-127.png\" alt=\"\" class=\"wp-image-1852\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-127.png 720w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-127-300x169.png 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>npx create-react-app my-app<a href=\"https:\/\/laravelamit.medium.com\/?source=post_page-----b6d7eec2af1--------------------------------\"><\/a><\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"5bcc\">Next step go to your my-app<\/h1>\n\n\n\n<p id=\"464d\">After the installation is completed, change to the directory where your app was installed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd my-app<\/code><\/pre>\n\n\n\n<p id=\"88b6\">and finally run&nbsp;<code>npm start<\/code>&nbsp;to see your app live on localhost:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm start\r<\/code><\/pre>\n\n\n\n<p id=\"dca1\">Next First install bootstrap in react<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm install react-bootstrap bootstrap<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"246\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-128.png\" alt=\"\" class=\"wp-image-1853\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-128.png 700w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-128-300x105.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n\n\n\n<p id=\"bf2d\">Now simply copy and paste below code in App.js<\/p>\n\n\n\n<p id=\"615f\">Firs\u2019t run below command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm i get-youtube-channel-id\r\nnpm i react-bootstrap<\/code><\/pre>\n\n\n\n<p id=\"7a53\">and next go to App.js and simply paste below code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React, { useState } from \"react\";\r\nimport \"bootstrap\/dist\/css\/bootstrap.min.css\";\r\nimport Container from \"react-bootstrap\/Container\";\r\nimport { Button, Form } from \"react-bootstrap\";\r\n\r\nconst youtubeChannelId = require(\"get-youtube-channel-id\");\r\n\r\nexport default function App() {\r\n  const &#91;url, setUrl] = useState(null);\r\n  const &#91;subscribers, setSubscribers] = useState(null);\r\n  const &#91;views, setViews] = useState(null);\r\n  const &#91;videos, setVideos] = useState(null);\r\n\r\n  const API_KEY = \"AIzaSyDmTojFDOFUpjlr6e-lnKT5sHBn5UD2bOI\";\r\n\r\n  const handleChange = (e) => {\r\n    setUrl(e.target.value);\r\n  };\r\n\r\n  async function handleSubmit(e) {\r\n    e.preventDefault();\r\n    const result = await youtubeChannelId(url);\r\n    console.log(result.id);\r\n\r\n    fetch(\r\n      `https:\/\/www.googleapis.com\/youtube\/v3\/channels?part=statistics&amp;id=${result.id}&amp;key=${API_KEY}`\r\n    )\r\n      .then((data) => data.json())\r\n      .then((result) => {\r\n        console.log(result);\r\n        setSubscribers(result.items&#91;0].statistics.subscriberCount);\r\n        setViews(result.items&#91;0].statistics.viewCount);\r\n        setVideos(result.items&#91;0].statistics.videoCount);\r\n      });\r\n  }\r\n\r\n  return (\r\n    &lt;div>\r\n      &lt;br \/>\r\n      &lt;br \/>\r\n      &lt;Container>\r\n        &lt;div\r\n          style={{\r\n            display: \"flex\",\r\n            justifyContent: \"center\",\r\n            alignItems: \"center\",\r\n            height: \"12vh\",\r\n            color: \"red\"\r\n          }}\r\n        >\r\n          &lt;h2> Enter your channel url &lt;\/h2>\r\n        &lt;\/div>\r\n        &lt;Form onSubmit={handleSubmit}>\r\n          &lt;Form.Group controlId=\"channelUrl\">\r\n            &lt;Form.Label>Channel URL:&lt;\/Form.Label>\r\n            &lt;Form.Control\r\n              type=\"text\"\r\n              name=\"url\"\r\n              onChange={handleChange}\r\n              value={url}\r\n              required\r\n              placeholder=\"Enter Channel URL\"\r\n            \/>\r\n          &lt;\/Form.Group>\r\n          &lt;br \/>\r\n          &lt;Button variant=\"primary\" type=\"submit\">\r\n            Submit\r\n          &lt;\/Button>\r\n          &lt;br \/>\r\n        &lt;\/Form>\r\n        You have {subscribers} subscribers\r\n        &lt;br \/>\r\n        You have {videos} Videos\r\n        &lt;br \/>\r\n        You have {views} Views\r\n      &lt;\/Container>\r\n    &lt;\/div>\r\n  );\r\n}<\/code><\/pre>\n\n\n\n<p id=\"5e45\">Run this command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm rebuild\r\nnpm start<\/code><\/pre>\n\n\n\n<p id=\"9890\">Now you can see your code is running well.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/miro.medium.com\/v2\/resize:fit:700\/1*V-n_n24ATfGbR_ZYbnnQLw.png\" alt=\"\"\/><\/figure>\n\n\n\n<p id=\"cfd6\">Next put your YouTube Channel url in input box.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/miro.medium.com\/v2\/resize:fit:700\/1*NIoWRANM3ck6ckvT2wh4Hg.png\" alt=\"\"\/><\/figure>\n\n\n\n<p id=\"baa1\">Thanks please comment and like\u2026.\ud83d\udc4d\ud83d\udc4d<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial i\u2019m going to learn how to count YouTube Subsribers count, views count as well, as define below. In order to install your app, first&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[25,691],"tags":[692,442,728],"class_list":["post-1850","post","type-post","status-publish","format-standard","hentry","category-laravel","category-nodejs","tag-nodejs","tag-reactjs","tag-reactjs-youtube-subscriber-count"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Youtube Subscriber Count in ReactJs - DevOps Freelancer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Youtube Subscriber Count in ReactJs - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"In this tutorial i\u2019m going to learn how to count YouTube Subsribers count, views count as well, as define below. In order to install your app, first...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-19T11:29:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-29T11:50:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"Youtube Subscriber Count in ReactJs\",\"datePublished\":\"2024-02-19T11:29:39+00:00\",\"dateModified\":\"2024-02-29T11:50:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/\"},\"wordCount\":147,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-126.png\",\"keywords\":[\"nodejs\",\"reactjs\",\"reactjs-youtube-subscriber-count\"],\"articleSection\":[\"Laravel\",\"nodejs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/\",\"name\":\"Youtube Subscriber Count in ReactJs - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-126.png\",\"datePublished\":\"2024-02-19T11:29:39+00:00\",\"dateModified\":\"2024-02-29T11:50:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-126.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-126.png\",\"width\":600,\"height\":315},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/youtube-subscriber-count-in-reactjs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Youtube Subscriber Count in ReactJs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\\\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/amitsthakurs\\\/\",\"https:\\\/\\\/www.instagram.com\\\/amits_thakurs\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/amits-thakurs\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/amits_thakurs\"],\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/amit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Youtube Subscriber Count in ReactJs - DevOps Freelancer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/","og_locale":"en_US","og_type":"article","og_title":"Youtube Subscriber Count in ReactJs - DevOps Freelancer","og_description":"In this tutorial i\u2019m going to learn how to count YouTube Subsribers count, views count as well, as define below. In order to install your app, first...","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2024-02-19T11:29:39+00:00","article_modified_time":"2024-02-29T11:50:01+00:00","og_image":[{"url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png","type":"","width":"","height":""}],"author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"Youtube Subscriber Count in ReactJs","datePublished":"2024-02-19T11:29:39+00:00","dateModified":"2024-02-29T11:50:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/"},"wordCount":147,"commentCount":0,"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png","keywords":["nodejs","reactjs","reactjs-youtube-subscriber-count"],"articleSection":["Laravel","nodejs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/","name":"Youtube Subscriber Count in ReactJs - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png","datePublished":"2024-02-19T11:29:39+00:00","dateModified":"2024-02-29T11:50:01+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#primaryimage","url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png","contentUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-126.png","width":600,"height":315},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/youtube-subscriber-count-in-reactjs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Youtube Subscriber Count in ReactJs"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1850","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=1850"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1850\/revisions"}],"predecessor-version":[{"id":1854,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1850\/revisions\/1854"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1850"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1850"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1850"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}