{"id":16963,"date":"2025-11-21T12:18:01","date_gmt":"2025-11-21T06:48:01","guid":{"rendered":"https:\/\/www.skynats.com\/?p=16963"},"modified":"2025-11-24T12:37:56","modified_gmt":"2025-11-24T07:07:56","slug":"how-to-install-and-configure-php-mongodb-driver-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/","title":{"rendered":"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0"},"content":{"rendered":"\n<ul class=\"wp-block-list\">\n<li>Establish a connection to a MongoDB instance from a PHP script using MongoDB\\Driver\\Manager.<\/li>\n\n\n\n<li>Supports both local and cloud-based MongoDB server<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-1-install-prerequisites\"><strong>1. Install Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before installing the PHP MongoDB driver on Ubuntu, ensure that you have the necessary tools and dependencies:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>PHP<\/strong> PHP 7.4 or above<\/li>\n\n\n\n<li><strong>PHP-dev<\/strong> and other necessary development libraries.<\/li>\n<\/ul>\n\n\n\n<p>Run the following commands to install the required dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update\napt install php php-cli php-dev php-pear libssl-dev pkg-config<\/code><\/pre>\n\n\n\n<p>This installs PHP, the PHP development tools, and the required libraries for compiling extensions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>2. Download MongoDB PHP Driver (1.7.4)<\/strong><\/h2>\n\n\n\n<p>You can download the MongoDB PHP driver 1.7.4 directly from the PECL website or use wget to download it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/pecl.php.net\/get\/mongodb-1.7.4.tgz<\/code><\/pre>\n\n\n\n<p>This will download the .tgz archive file of the MongoDB driver.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>3. Extract the Driver<\/strong><\/h2>\n\n\n\n<p>Once the file is downloaded, you need to extract it to a directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xvzf mongodb-1.7.4.tgz\ncd mongodb-1.7.4<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Prepare for Installation<\/strong><\/h3>\n\n\n\n<p>Before installing the driver, you need to prepare the PHP extension using phpize. This command will set up the environment for compiling the driver:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>phpize<\/code><\/pre>\n\n\n\n<p>This command prepares the necessary files for compilation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>5. Configure the MongoDB Driver<\/strong><\/h3>\n\n\n\n<p>Next, run the .\/configure command to check your system and set up the MongoDB extension for your PHP version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/configure<\/code><\/pre>\n\n\n\n<p>If everything goes well, the .\/configure step will complete without errors. If you encounter any issues, make sure all dependencies were installed properly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>6. Compile and Install the Driver<\/strong><\/h3>\n\n\n\n<p>Now, compile the extension using the make command, then install it with make install:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>make\nsudo make install<\/code><\/pre>\n\n\n\n<p>This step compiles and installs the MongoDB driver extension for PHP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>7. Enable the MongoDB Extension<\/strong><\/h2>\n\n\n\n<p>After installation, you need to enable the MongoDB extension in PHP. You do this by editing your php.ini file.<\/p>\n\n\n\n<p>1. Find the location of your php.ini file. You can do this by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php --ini<\/code><\/pre>\n\n\n\n<p>It will show the path to the loaded php.ini file (for example: \/etc\/php\/7.4\/cli\/php.ini).<\/p>\n\n\n\n<p>2. Open the php.ini file for editing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vim  \/etc\/php\/7.4\/cli\/php.ini <\/code><\/pre>\n\n\n\n<p>3. Add the following line at the end of the php.ini file to load the MongoDB extension:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>extension=mongodb.so<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>8. Restart PHP or Web Server<\/strong><\/h3>\n\n\n\n<p>After updating php.ini, you need to restart PHP (or your web server if you&#8217;re running PHP-FPM or <a href=\"https:\/\/httpd.apache.org\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Apache<\/mark><\/a>).<\/p>\n\n\n\n<p>If you\u2019re using <strong>PHP-FPM<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart php8.2-fpm  # Replace 8.2 with your PHP version<\/code><\/pre>\n\n\n\n<p>If you\u2019re using Apache with mod_php:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>9. Verify the Installation<\/strong><\/h3>\n\n\n\n<p>To ensure the MongoDB extension is correctly installed, you can run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php -m | grep mongodb<\/code><\/pre>\n\n\n\n<p>If the installation was successful, this will output mongodb.<\/p>\n\n\n\n<p>If you\u2019re facing issues or want a seamless, optimized setup, our expert team is here to assist. With our comprehensive <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management Services<\/a>, we handle everything from package installation to database configuration and performance tuning\u2014ensuring your environment runs smoothly and securely. Whether you&#8217;re installing the PHP MongoDB Driver on Ubuntu for the first time or need advanced troubleshooting, our certified engineers are available 24\/7 to support your server needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Install Prerequisites Before installing the PHP MongoDB driver on Ubuntu, ensure that you have the necessary tools and dependencies: Run the following commands to install the required dependencies: This installs PHP, the PHP development tools, and the required libraries for compiling extensions. 2. Download MongoDB PHP Driver (1.7.4) You can download the MongoDB PHP [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1175,302],"class_list":["post-16963","post","type-post","status-publish","format-standard","hentry","category-blog","tag-php-mongodb-driver-on-ubuntu","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>PHP MongoDB Driver on Ubuntu: Easy Install &amp; Configure Guide<\/title>\n<meta name=\"description\" content=\"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!\" \/>\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.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0\" \/>\n<meta property=\"og:description\" content=\"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-21T06:48:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-24T07:07:56+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sajna VM\" \/>\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.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0\",\"datePublished\":\"2025-11-21T06:48:01+00:00\",\"dateModified\":\"2025-11-24T07:07:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/\"},\"wordCount\":459,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"PHP MongoDB Driver on Ubuntu\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/\",\"name\":\"PHP MongoDB Driver on Ubuntu: Easy Install & Configure Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-21T06:48:01+00:00\",\"dateModified\":\"2025-11-24T07:07:56+00:00\",\"description\":\"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP MongoDB Driver on Ubuntu: Easy Install & Configure Guide","description":"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!","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.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0","og_description":"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-11-21T06:48:01+00:00","article_modified_time":"2025-11-24T07:07:56+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0","datePublished":"2025-11-21T06:48:01+00:00","dateModified":"2025-11-24T07:07:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/"},"wordCount":459,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["PHP MongoDB Driver on Ubuntu","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/","name":"PHP MongoDB Driver on Ubuntu: Easy Install & Configure Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-11-21T06:48:01+00:00","dateModified":"2025-11-24T07:07:56+00:00","description":"Learn how to install the PHP MongoDB Driver on Ubuntu fast. Simple steps to get you running\u2014read the guide today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-php-mongodb-driver-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install\u00a0 and configure\u00a0 PHP MongoDB Driver on Ubuntu\u00a0"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16963","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=16963"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16963\/revisions"}],"predecessor-version":[{"id":16966,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16963\/revisions\/16966"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=16963"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=16963"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=16963"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}