{"id":346,"date":"2024-11-25T10:29:13","date_gmt":"2024-11-25T00:29:13","guid":{"rendered":"https:\/\/enfonica.com\/blog\/?p=346"},"modified":"2024-11-25T10:29:14","modified_gmt":"2024-11-25T00:29:14","slug":"how-to-test-sip-connectivity-using-sipsak","status":"publish","type":"post","link":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/","title":{"rendered":"How to Test SIP Connectivity Using sipsak"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Ensuring that your SIP (Session Initiation Protocol) connection is functioning properly is a fundamental step in setting up and maintaining your communication systems. Whether you\u2019re troubleshooting or performing routine checks, <strong>sipsak<\/strong> is a lightweight, reliable tool to test SIP connectivity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this guide, we\u2019ll walk through how to use <strong>sipsak<\/strong> to verify bidirectional UDP connectivity with a SIP provider, using <strong>Enfonica<\/strong> as an example. These steps can be applied to other SIP providers as well.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before starting, ensure you have the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A machine with access to a terminal (Linux, macOS, or Windows).<\/li><li>The hostname of your SIP server, such as <strong>sip.enfonica.com<\/strong>.<\/li><\/ul>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Installing sipsak<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here\u2019s how to install <strong>sipsak<\/strong> on common operating systems:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>For Linux<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Debian\/Ubuntu<\/strong>:<br><pre class=\"wp-block-code\"><code>sudo apt-get install sipsak<\/code><\/pre><\/li><li><strong>CentOS\/RHEL<\/strong>:<br>Install the EPEL repository first:<pre class=\"wp-block-code\"><code>sudo yum install epel-release\nsudo yum install sipsak<\/code><\/pre><\/li><li><strong>Arch Linux<\/strong>:<br><pre class=\"wp-block-code\"><code>sudo pacman -S sipsak<\/code><\/pre><\/li><li>If not available via your distribution&#8217;s package manager, you can build from source using the instructions on <a href=\"https:\/\/github.com\/nils-ohlmeier\/sipsak\">sipsak\u2019s GitHub repository<\/a>.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>For macOS<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Install with Homebrew:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>brew install sipsak<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>For Windows<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Install the Windows Subsystem for Linux (WSL) and follow the Linux instructions within the WSL environment.<\/li><li>Alternatively, use a tool like Docker to create a Linux-based container for <strong>sipsak<\/strong>.<\/li><\/ul>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Testing SIP Connectivity<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once <strong>sipsak<\/strong> is installed, you can test connectivity to your SIP server using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sipsak -v -s sip:&lt;SIP_PROVIDER_DOMAIN&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">For example, to test connectivity to <strong>Enfonica<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sipsak -v -s sip:sip.enfonica.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Expected Response<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If the connection is successful, you will receive a response similar to the one below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sipsak -v -s sip:sip.enfonica.com\nSIP\/2.0 200 Keepalive\nVia: SIP\/2.0\/UDP 127.0.1.1:43825;branch=z9hG4bK.2b991a55\nFrom: sip:sipsak@127.0.1.1:43825;tag=3cbae4bb\nTo: sip:sip.enfonica.com;tag=d506250398269113e57ad6d49099e6f1.eac75b89\nCall-ID: 1018881258@127.0.0.1\nCSeq: 1 OPTIONS\nAllow: INVITE, ACK, OPTIONS, CANCEL, BYE\nContent-Length: 0<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This <strong>SIP\/2.0 200<\/strong> response confirms that bidirectional UDP connectivity is working between your client and the SIP server.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Troubleshooting<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If the test does not succeed, here are some steps to diagnose the issue:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Check Firewall or NAT Settings<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Ensure UDP traffic is not blocked by a firewall on your network.<\/li><li>Verify that ports commonly used for SIP (like 5060) are open.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Validate the SIP Server Hostname<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Double-check the server hostname (<strong>sip.enfonica.com<\/strong> in our example).<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Use sngrep for Deeper Analysis<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re unsure about what\u2019s happening with your SIP packets, use <strong>sngrep<\/strong> to capture and analyze SIP traffic:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Install <strong>sngrep<\/strong>:<ul><li>On Debian\/Ubuntu:<br><pre class=\"wp-block-code\"><code>sudo apt-get install sngrep<\/code><\/pre><\/li><li>On CentOS\/RHEL:<br><pre class=\"wp-block-code\"><code>sudo yum install epel-release\nsudo yum install sngrep<\/code><\/pre><\/li><\/ul><\/li><li>Run <strong>sngrep<\/strong> to monitor traffic:<br><pre class=\"wp-block-code\"><code>sudo sngrep<\/code><\/pre><br>This tool provides a visual representation of SIP messages, allowing you to identify issues like packet loss or misconfigured headers.<\/li><\/ol>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Verifying Bidirectional Connectivity<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Receiving a <strong>SIP\/2.0 200<\/strong> response confirms that:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Your client can send UDP packets to the SIP server.<\/li><li>The SIP server can respond back, validating bidirectional UDP communication.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This is crucial for ensuring that your SIP signaling will work as intended.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Using <strong>sipsak<\/strong> is an effective and straightforward way to test SIP connectivity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For advanced troubleshooting, tools like <strong>sngrep<\/strong> provide deeper insights into your SIP traffic, helping you resolve connectivity issues faster.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re testing with Enfonica and encounter issues, feel free to reach out to Enfonica\u2019s support team for assistance.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Additional Resources<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/github.com\/nils-ohlmeier\/sipsak\">sipsak GitHub Repository<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we\u2019ll walk through how to use sipsak to verify bidirectional UDP connectivity.<\/p>\n","protected":false},"author":2,"featured_media":356,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[48,18],"tags":[51,50],"class_list":["post-346","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sip-trunks","category-tutorial","tag-sip","tag-sipsak"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Test SIP Connectivity Using sipsak<\/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:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Test SIP Connectivity Using sipsak\" \/>\n<meta property=\"og:description\" content=\"In this guide, we\u2019ll walk through how to use sipsak to verify bidirectional UDP connectivity.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/\" \/>\n<meta property=\"og:site_name\" content=\"Enfonica\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-25T00:29:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-25T00:29:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1250\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shane Mitchell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shane Mitchell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/\"},\"author\":{\"name\":\"Shane Mitchell\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/#\\\/schema\\\/person\\\/8ac4bf0a6ad0c1f10c449c3007aa52f4\"},\"headline\":\"How to Test SIP Connectivity Using sipsak\",\"datePublished\":\"2024-11-25T00:29:13+00:00\",\"dateModified\":\"2024-11-25T00:29:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/\"},\"wordCount\":476,\"image\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Blog-Images-1.png\",\"keywords\":[\"sip\",\"sipsak\"],\"articleSection\":[\"SIP Trunks\",\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/\",\"url\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/\",\"name\":\"How to Test SIP Connectivity Using sipsak\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Blog-Images-1.png\",\"datePublished\":\"2024-11-25T00:29:13+00:00\",\"dateModified\":\"2024-11-25T00:29:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/#\\\/schema\\\/person\\\/8ac4bf0a6ad0c1f10c449c3007aa52f4\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#primaryimage\",\"url\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Blog-Images-1.png\",\"contentUrl\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Blog-Images-1.png\",\"width\":1250,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/how-to-test-sip-connectivity-using-sipsak\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Test SIP Connectivity Using sipsak\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/\",\"name\":\"Enfonica\",\"description\":\"Our mission is to revolutionize communications technology.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/#\\\/schema\\\/person\\\/8ac4bf0a6ad0c1f10c449c3007aa52f4\",\"name\":\"Shane Mitchell\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g\",\"caption\":\"Shane Mitchell\"},\"url\":\"https:\\\/\\\/enfonica.com\\\/blog\\\/author\\\/shane-mitchell\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Test SIP Connectivity Using sipsak","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:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/","og_locale":"en_US","og_type":"article","og_title":"How to Test SIP Connectivity Using sipsak","og_description":"In this guide, we\u2019ll walk through how to use sipsak to verify bidirectional UDP connectivity.","og_url":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/","og_site_name":"Enfonica","article_published_time":"2024-11-25T00:29:13+00:00","article_modified_time":"2024-11-25T00:29:14+00:00","og_image":[{"width":1250,"height":630,"url":"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png","type":"image\/png"}],"author":"Shane Mitchell","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shane Mitchell","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#article","isPartOf":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/"},"author":{"name":"Shane Mitchell","@id":"https:\/\/enfonica.com\/blog\/#\/schema\/person\/8ac4bf0a6ad0c1f10c449c3007aa52f4"},"headline":"How to Test SIP Connectivity Using sipsak","datePublished":"2024-11-25T00:29:13+00:00","dateModified":"2024-11-25T00:29:14+00:00","mainEntityOfPage":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/"},"wordCount":476,"image":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#primaryimage"},"thumbnailUrl":"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png","keywords":["sip","sipsak"],"articleSection":["SIP Trunks","Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/","url":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/","name":"How to Test SIP Connectivity Using sipsak","isPartOf":{"@id":"https:\/\/enfonica.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#primaryimage"},"image":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#primaryimage"},"thumbnailUrl":"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png","datePublished":"2024-11-25T00:29:13+00:00","dateModified":"2024-11-25T00:29:14+00:00","author":{"@id":"https:\/\/enfonica.com\/blog\/#\/schema\/person\/8ac4bf0a6ad0c1f10c449c3007aa52f4"},"breadcrumb":{"@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#primaryimage","url":"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png","contentUrl":"https:\/\/enfonica.com\/blog\/wp-content\/uploads\/2024\/11\/Blog-Images-1.png","width":1250,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/enfonica.com\/blog\/how-to-test-sip-connectivity-using-sipsak\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/enfonica.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Test SIP Connectivity Using sipsak"}]},{"@type":"WebSite","@id":"https:\/\/enfonica.com\/blog\/#website","url":"https:\/\/enfonica.com\/blog\/","name":"Enfonica","description":"Our mission is to revolutionize communications technology.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/enfonica.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/enfonica.com\/blog\/#\/schema\/person\/8ac4bf0a6ad0c1f10c449c3007aa52f4","name":"Shane Mitchell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0382e20f6047337b38ceb4d2015563b35f087f3345e32ef575e318a15bf09d20?s=96&d=mm&r=g","caption":"Shane Mitchell"},"url":"https:\/\/enfonica.com\/blog\/author\/shane-mitchell\/"}]}},"_links":{"self":[{"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/posts\/346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/comments?post=346"}],"version-history":[{"count":11,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/posts\/346\/revisions"}],"predecessor-version":[{"id":596,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/posts\/346\/revisions\/596"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/media\/356"}],"wp:attachment":[{"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/media?parent=346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/categories?post=346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/enfonica.com\/blog\/wp-json\/wp\/v2\/tags?post=346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}