{"id":4093,"date":"2010-06-14T12:06:00","date_gmt":"2010-06-14T12:06:00","guid":{"rendered":"https:\/\/www.htmlgoodies.com\/uncategorized\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/"},"modified":"2010-06-14T12:06:00","modified_gmt":"2010-06-14T12:06:00","slug":"web-developer-class-how-do-i-use-ftp-to-transfer-files","status":"publish","type":"post","link":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/","title":{"rendered":"Web Developer Class: How Do I Use FTP To Transfer Files?"},"content":{"rendered":"

FTP<\/b> stands for F<\/B>ile T<\/B>ransfer P<\/B>rotocol. It’s the concept of moving a file from your storage space to your server so others can look at
\nit. This is one of the basics of HTML, and most people know how
\nto do it, but are confused why items can sometimes be corrupted
\nwhen transferring. I put this together to try and explain some
\nof the statements I make.<\/p>\n

How FTP Works<\/H2><\/p>\n

FTP is actually very basic. There
\nare about a million different FTP programs you can take off the
\nInternet as shareware or purchase, heck even Netscape and
\nExplorer will allow you to take files, often called
\n“downloading.” Obviously then, placing a file from your storage
\nspace to the server is called “uploading.”

<\/p>\n

My guess if that you have your own
\nFTP program already, but if not, you can download one. They come in freeware and shareware. If you want free, try FTP Explorer<\/a> or the free (limited) version of WS_FTP<\/a>.

<\/p>\n

If you don’t mind spending a couple of bucks after a 30-day trial, click on one of these. I’ve tried them all and can vouch that they are all good programs.
\n Try either
WSFTP<\/a> full version, CuteFTP<\/a> or my personal favorite,
\n
FTP2000<\/a>.

<\/p>\n

Below, in Table form, is the
\ngeneral interface
\nfor a basic FTP program. Yours is something like this. By the
\nway, “interface” is the thing between you and the computer,
\nmainly the graphics. In fact, an interface is anything that acts as a go-between for two items. You and your computer are as good as any two.


\n


\n
\n\n\n


\n\n<\/p>\n

ASCII <\/b>
\n<\/TD>
 
\n<\/TD>
BINARY<\/b><\/p>\n
\n
\n

<\/TD><\/p>\n

Files    
\n 
On
Your
 
\n    Hard
  
\n   Drive
\n<\/TD>
<-
\n<\/TD>
COPY
\n<\/TD>
->
\n<\/TD>
Files   
\n  
On    
\n 
Your
\n
Server
\n

\n<\/TD>
<-
\n<\/TD>
VIEW
\n<\/TD>
->
\n<\/TD><\/p>\n
<-
\n<\/TD>
DELETE
\n<\/TD>
->
\n<\/TD>
<-
\n<\/TD>
RENAME
\n<\/TD>
->
\n<\/TD>
\n<\/table>\n

<\/center><\/p>\n

Let Me Explain It…<\/b>
\n


    \n
  • The Bold “ASCII” and “BINARY” at the top are buttons that
    \nchange the transfer type.
    \n
  • The center column of three buttons allows you to click either
    \nside of the command to transfer the file from or to the server.
    \nSee the arrows?
    \n<\/UL> <\/p>\n

    ASCII vs. Binary<\/H2>
    \nThis is the main reason for this
    \ntutorial. I get letters all the time asking why images, or
    \nApplets, or JavaScripts, don’t work. My answer is usually that
    \nthe person corrupted it in the FTP.
    \nThat usually confounds the problem further. Here’s a more
    \nin-depth explanation:
    <\/p>\n


      \n
    • ASCII<\/B> Sometimes called “TEXT” or “TEXT DOS”.\n<\/ul>\n


      \nASCII stands for American Standard
      \nCode for Information Interchange. It is text, short and simple.
      \nBut it is text that is standardized so all computers everywhere
      \nunderstand it. Look at your keyboard. See all those things,
      \nthose letters and characters? There are actually 128 of them in
      \nall. (Count upper and lower case as two).


      \nNow it gets loopy –


      \nComputers deal with numbers.
      \nPeriod. Yes, you see little letters, but the computer doesn’t.
      \nIt sees numbers–ones and zeros to be exact. Each one or zero is called a “bit.” That’s short for “binary digit.” ASCII is a series
      \nof seven one and zero number combinations representing letters
      \nand characters. (Some computers now use an “Extended ASCII” that uses eight numbers) An extra digit is often added as a check to see
      \nif the other seven are correct. It’s called a “parity digit” or “check bit” and through a mathematical equation involving the other seven
      \nnumbers, it checks to see if the numbers are correct. Here’s what
      \nsome ASCII code looks like:


      \n


      \n
      \n
      \n
      \n
      \n
      \n
      Symbol<\/B>
      \n<\/TD>
      ASCII Code<\/B>
      \n<\/TD>
      Symbol<\/B>
      \n<\/TD>
      ASCII Code<\/B><\/p>\n

      A
      \n<\/TD>
      01000000
      \n<\/TD>
      a
      \n<\/TD>
      01100001
      \n
      !
      \n<\/TD>
      00100001
      \n<\/TD>
      $
      \n<\/TD>
      00100100
      \n
      Z
      \n<\/TD>
      01011010
      \n<\/TD>
      z
      \n<\/TD>
      01111010
      \n
      …etc, etc, etc up to 128
      \n<\/TABLE>
      \n<\/CENTER>
      \n

      <\/p>\n

      Notice that there are only two
      \nnumbers involved, one and zero. This is what’s known as “binary”, two
      \nitems. THEN WHAT’S THE DIFFERENCE BETWEEN THE TWO?!?!–you ask.
      \nI told you this gets loopy. ASCII code is code for text alone.
      \nThose 128 groupings of ones and zeros represent text, period.
      \n


      \nIn terms of FTP:<\/B> If you are FTPing something that only has
      \ntext, like an HTML document, use the ASCII mode of your
      \napplication. More on why in a moment.<\/p>\n


        \n
      • Binary<\/B> Sometimes called “Raw Data” or “All Files”
        \n<\/UL>
        \n


        \nBinary is best explained in
        \ncomparison to ASCII. Binary also uses the seven (sometimes
        \neight) digit ones and zeros combinations, but sees the characters
        \nin a different light.


        \n    Let’s say you are FTPing an applet. Yes,
        \nit uses only the 128 characters on the keyboard, but with one
        \nmajor exception…all characters are not equal. If you look at a
        \nGIF, or a JPEG, or an image (in an editor) – yes, it looks
        \nlike text. Remember, the computer sees numbers only, and
        \ncharacters are a good representation of those numbers. You see,
        \nthe computer doesn’t require that you see what happens to work.
        \nText is just so you can get a representation of what it is
        \ndoing.


        \nWhere a binary transfer differs
        \nfrom ASCII is how it treats the characters used. An Applet needs
        \nto not only retain the same characters when it transfers, but
        \nalso needs to retain the same form.
        \nIt has to be equally as wide and tall when it arrives at its
        \ndestination as it was when it left. If it is not – it’s corrupted and won’t
        \nwork.

        <\/p>\n

        An Example:<\/H2><\/p>\n

        When you create an HTML Document – you may have noticed that adding a ton of spaces between words
        \ndid not translate into a ton of spaces in the browser window. In addition, where you hit “enter” to jump to the next line didn’t mean didley when
        \nyou posted it. The line broke when it wanted (unless you put in
        \na <BR> command).


        \nThe reason for this is because you
        \nsaved the document as “TEXT” of one form or another. That only
        \nsaved the letters, nothing else. Where you hit return didn’t
        \nmater. Your margin settings weren’t saved – only the text. This
        \nis why you have to put in tags to make the text do what you
        \nwant. When you transfer the file over as ASCII, only the text
        \ngoes, because that’s all that is required. Its form is
        \nimmaterial. You could write your HTML Document as one really,
        \nreally long line. The computer doesn’t care. It changes the
        \ntext off of the tags, not by the form it was sent. How pretty
        \nyou make your HTML document doesn’t matter.

        <\/p>\n

        Now, imagine you just finished
        \nwriting an Applet. Yes, it’s in text, but the text is more than
        \njust a bunch of words. The text is in a certain format. Some of
        \nthe text represents commands for the computer, and some
        \nrepresents text that will appear on the screen. Still other text
        \nrepresents a jump to the next line. That format of text must be
        \nretained. If you send the Applet as ASCII, the transfer
        \nliterally changes the Applet into a long line of characters –
        \nbasically it makes it text alone. The different types of
        \ncommands have lost their meaning. All is now equal. It is
        \ncorrupted. It will not work.

        <\/p>\n

        If you send (or download) an image
        \nas “TEXT” – same thing. The ASCII transfer changes the code into
        \nstraight text with no special meaning. It is no longer an image
        \nbut rather a long line of unrelated characters – it is corrupted
        \nand it won’t work.<\/p>\n

        Rule of Thumb<\/H2><\/p>\n

        This goes for both FTP and downloading!<\/B>


        \n

          <\/p>\n

        • Use ASCII only for transferring HTML Documents.
          \n
        • Everything else – goes Binary (or raw data or all files
          \ndepending on your program)
          \n
        • Additional rule – if your HTML Document contains a JavaScript that you know is correct, but doesn’t work when you post
          \nit, send the HTML Document as Binary. The text might need some minor adjusting, but will probably be fine. The Script is the concern here.
          \n<\/UL><\/p>\n

          Why Not Send and Save Everything as Binary?<\/H2><\/p>\n

          You can. It’s just that sending an
          \nHTML document as Binary, tends to mess it up a bit. More than
          \njust text is being sent – form is now involved, and it may alter
          \nup what you want. Make a point of sending in two forms, binary and ASCII.
          \n

          <\/p>\n

          Finally!<\/H2>
          \nThe things I said above go for
          \nboth FTP and downloading!!! Text is text. Applets, images, CGI’s
          \nand Scripts, are quite different.<\/B>

          <\/p>\n

          If you download or transfer something and it fails to work – the smart money is that you corrupted it through one or many of your transfers.<\/I>

          <\/p>\n

          Thanks for stopping by…now go FTP something.<\/p>\n","protected":false},"excerpt":{"rendered":"

          FTP stands for File Transfer Protocol. It’s the concept of moving a file from your storage space to your server so others can look at it. This is one of the basics of HTML, and most people know how to do it, but are confused why items can sometimes be corrupted when transferring. I put […]<\/p>\n","protected":false},"author":57,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[30645],"tags":[],"b2b_audience":[],"b2b_industry":[],"b2b_product":[68,80],"acf":[],"yoast_head":"\nWeb Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies<\/title>\n<meta name=\"description\" content=\"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of\" \/>\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.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Web Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies\" \/>\n<meta property=\"og:description\" content=\"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/\" \/>\n<meta property=\"og:site_name\" content=\"HTML Goodies\" \/>\n<meta property=\"article:published_time\" content=\"2010-06-14T12:06:00+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@htmlgoodies\" \/>\n<meta name=\"twitter:site\" content=\"@htmlgoodies\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Joe Burns\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.htmlgoodies.com\/#organization\",\"name\":\"HTML Goodies\",\"url\":\"https:\/\/www.htmlgoodies.com\/\",\"sameAs\":[\"https:\/\/twitter.com\/htmlgoodies\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.htmlgoodies.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.htmlgoodies.com\/wp-content\/uploads\/2021\/03\/HTMLg_weblogo_MobileLogo.png\",\"contentUrl\":\"https:\/\/www.htmlgoodies.com\/wp-content\/uploads\/2021\/03\/HTMLg_weblogo_MobileLogo.png\",\"width\":584,\"height\":136,\"caption\":\"HTML Goodies\"},\"image\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.htmlgoodies.com\/#website\",\"url\":\"https:\/\/www.htmlgoodies.com\/\",\"name\":\"HTML Goodies\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.htmlgoodies.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage\",\"url\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/\",\"name\":\"Web Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies\",\"isPartOf\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/#website\"},\"datePublished\":\"2010-06-14T12:06:00+00:00\",\"dateModified\":\"2010-06-14T12:06:00+00:00\",\"description\":\"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of\",\"breadcrumb\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.htmlgoodies.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Web Developer Class: How Do I Use FTP To Transfer Files?\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/49227c541b63630606511c92eeac2c71\"},\"headline\":\"Web Developer Class: How Do I Use FTP To Transfer Files?\",\"datePublished\":\"2010-06-14T12:06:00+00:00\",\"dateModified\":\"2010-06-14T12:06:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage\"},\"wordCount\":1427,\"publisher\":{\"@id\":\"https:\/\/www.htmlgoodies.com\/#organization\"},\"articleSection\":[\"Webmaster\"],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/49227c541b63630606511c92eeac2c71\",\"name\":\"Joe Burns\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/46e3b2aca026ae9603df6e9d91cffdcf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/46e3b2aca026ae9603df6e9d91cffdcf?s=96&d=mm&r=g\",\"caption\":\"Joe Burns\"},\"url\":\"https:\/\/www.htmlgoodies.com\/author\/joe-burns\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Web Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies","description":"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of","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.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/","og_locale":"en_US","og_type":"article","og_title":"Web Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies","og_description":"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of","og_url":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/","og_site_name":"HTML Goodies","article_published_time":"2010-06-14T12:06:00+00:00","twitter_card":"summary_large_image","twitter_creator":"@htmlgoodies","twitter_site":"@htmlgoodies","twitter_misc":{"Written by":"Joe Burns","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.htmlgoodies.com\/#organization","name":"HTML Goodies","url":"https:\/\/www.htmlgoodies.com\/","sameAs":["https:\/\/twitter.com\/htmlgoodies"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.htmlgoodies.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.htmlgoodies.com\/wp-content\/uploads\/2021\/03\/HTMLg_weblogo_MobileLogo.png","contentUrl":"https:\/\/www.htmlgoodies.com\/wp-content\/uploads\/2021\/03\/HTMLg_weblogo_MobileLogo.png","width":584,"height":136,"caption":"HTML Goodies"},"image":{"@id":"https:\/\/www.htmlgoodies.com\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/www.htmlgoodies.com\/#website","url":"https:\/\/www.htmlgoodies.com\/","name":"HTML Goodies","description":"","publisher":{"@id":"https:\/\/www.htmlgoodies.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.htmlgoodies.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage","url":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/","name":"Web Developer Class: How Do I Use FTP To Transfer Files? | HTML Goodies","isPartOf":{"@id":"https:\/\/www.htmlgoodies.com\/#website"},"datePublished":"2010-06-14T12:06:00+00:00","dateModified":"2010-06-14T12:06:00+00:00","description":"FTP stands for File Transfer Protocol. It's the concept of moving a file from your storage space to your server so others can look at it. This is one of","breadcrumb":{"@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.htmlgoodies.com\/"},{"@type":"ListItem","position":2,"name":"Web Developer Class: How Do I Use FTP To Transfer Files?"}]},{"@type":"Article","@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#article","isPartOf":{"@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage"},"author":{"@id":"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/49227c541b63630606511c92eeac2c71"},"headline":"Web Developer Class: How Do I Use FTP To Transfer Files?","datePublished":"2010-06-14T12:06:00+00:00","dateModified":"2010-06-14T12:06:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.htmlgoodies.com\/webmaster\/web-developer-class-how-do-i-use-ftp-to-transfer-files\/#webpage"},"wordCount":1427,"publisher":{"@id":"https:\/\/www.htmlgoodies.com\/#organization"},"articleSection":["Webmaster"],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/49227c541b63630606511c92eeac2c71","name":"Joe Burns","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.htmlgoodies.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/46e3b2aca026ae9603df6e9d91cffdcf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/46e3b2aca026ae9603df6e9d91cffdcf?s=96&d=mm&r=g","caption":"Joe Burns"},"url":"https:\/\/www.htmlgoodies.com\/author\/joe-burns\/"}]}},"_links":{"self":[{"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/posts\/4093"}],"collection":[{"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/users\/57"}],"replies":[{"embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/comments?post=4093"}],"version-history":[{"count":0,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/posts\/4093\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/media?parent=4093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/categories?post=4093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/tags?post=4093"},{"taxonomy":"b2b_audience","embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/b2b_audience?post=4093"},{"taxonomy":"b2b_industry","embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/b2b_industry?post=4093"},{"taxonomy":"b2b_product","embeddable":true,"href":"https:\/\/www.htmlgoodies.com\/wp-json\/wp\/v2\/b2b_product?post=4093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}