{"id":3848,"date":"2022-08-20T19:47:59","date_gmt":"2022-08-20T14:17:59","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/"},"modified":"2022-08-20T19:47:59","modified_gmt":"2022-08-20T14:17:59","slug":"solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/","title":{"rendered":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-12573818\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"12573818\" data-parentid=\"12573816\" data-score=\"957\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Compiling a C++ program takes place in several steps, as specified by <strong>2.2<\/strong> (credits to Keith Thompson for the reference):<\/p>\n<blockquote>\n<p>The precedence among the syntax rules of translation is specified by the following phases <em>[see footnote]<\/em>.<\/p>\n<ol>\n<li>Physical source file characters are mapped, in an implementation-defined manner, to the basic source character set<br \/>\n(introducing new-line characters for end-of-line indicators) if<br \/>\nnecessary. <em>[SNIP]<\/em><\/li>\n<li>Each instance of a backslash character (\\) immediately followed by a new-line character is deleted, splicing physical source lines to<br \/>\nform logical source lines. <em>[SNIP]<\/em><\/li>\n<li>The source file is decomposed into preprocessing tokens (2.5) and sequences of white-space characters (including comments). <em>[SNIP]<\/em><\/li>\n<li>Preprocessing directives are executed, macro invocations are expanded, and _Pragma unary operator expressions are executed. <em>[SNIP]<\/em><\/li>\n<li>Each source character set member in a character literal or a string literal, as well as each escape sequence and universal-character-name<br \/>\nin a character literal or a non-raw string literal, is converted to<br \/>\nthe corresponding member of the execution character set; <em>[SNIP]<\/em><\/li>\n<li>Adjacent string literal tokens are concatenated.<\/li>\n<li>White-space characters separating tokens are no longer significant. Each preprocessing token is converted into a token. (2.7). The<br \/>\nresulting tokens are syntactically and semantically analyzed and<br \/>\ntranslated as a translation unit. <em>[SNIP]<\/em><\/li>\n<li>Translated translation units and instantiation units are combined as follows: <em>[SNIP]<\/em><\/li>\n<li><strong>All external entity references are resolved. Library components are linked to satisfy external references to entities not defined in the<br \/>\ncurrent translation. All such translator output is collected into a<br \/>\nprogram image which contains information needed for execution in its<br \/>\nexecution environment.<\/strong> (emphasis mine)<\/li>\n<\/ol>\n<p><em>[footnote]<\/em> Implementations must behave as if these separate phases occur, although in practice different phases might be folded together.<\/p>\n<\/blockquote>\n<p>The specified errors occur during this last stage of compilation, most commonly referred to as linking. It basically means that you compiled a bunch of implementation files into object files or libraries and now you want to get them to work together.<\/p>\n<p>Say you defined symbol <code>a<\/code> in <code>a.cpp<\/code>. Now, <code>b.cpp<\/code> <em>declared<\/em> that symbol and used it. Before linking, it simply assumes that that symbol was defined <em>somewhere<\/em>, but it doesn&#8217;t yet care where. The linking phase is responsible for finding the symbol and correctly linking it to <code>b.cpp<\/code> (well, actually to the object or library that uses it).<\/p>\n<p>If you&#8217;re using Microsoft Visual Studio, you&#8217;ll see that projects generate <code>.lib<\/code> files. These contain a table of exported symbols, and a table of imported symbols. The imported symbols are resolved against the libraries you link against, and the exported symbols are provided for the libraries that use that <code>.lib<\/code> (if any).<\/p>\n<p>Similar mechanisms exist for other compilers\/ platforms.<\/p>\n<p>Common error messages are <code>error LNK2001<\/code>, <code>error LNK1120<\/code>, <code>error LNK2019<\/code> for <strong>Microsoft Visual Studio<\/strong> and <code>undefined reference to<\/code> <em>symbolName<\/em> for <strong>GCC<\/strong>.<\/p>\n<p>The code:<\/p>\n<pre><code>struct X\n{\n   virtual void foo();\n};\nstruct Y : X\n{\n   void foo() {}\n};\nstruct A\n{\n   virtual ~A() = 0;\n};\nstruct B: A\n{\n   virtual ~B(){}\n};\nextern int x;\nvoid foo();\nint main()\n{\n   x = 0;\n   foo();\n   Y y;\n   B b;\n}\n<\/code><\/pre>\n<p>will generate the following errors with <strong>GCC<\/strong>:<\/p>\n<pre><code>\/home\/AbiSfw\/ccvvuHoX.o: In function `main':\nprog.cpp:(.text+0x10): undefined reference to `x'\nprog.cpp:(.text+0x19): undefined reference to `foo()'\nprog.cpp:(.text+0x2d): undefined reference to `A::~A()'\n\/home\/AbiSfw\/ccvvuHoX.o: In function `B::~B()':\nprog.cpp:(.text._ZN1BD1Ev[B::~B()]+0xb): undefined reference to `A::~A()'\n\/home\/AbiSfw\/ccvvuHoX.o: In function `B::~B()':\nprog.cpp:(.text._ZN1BD0Ev[B::~B()]+0x12): undefined reference to `A::~A()'\n\/home\/AbiSfw\/ccvvuHoX.o:(.rodata._ZTI1Y[typeinfo for Y]+0x8): undefined reference to `typeinfo for X'\n\/home\/AbiSfw\/ccvvuHoX.o:(.rodata._ZTI1B[typeinfo for B]+0x8): undefined reference to `typeinfo for A'\ncollect2: ld returned 1 exit status\n<\/code><\/pre>\n<p>and similar errors with <strong>Microsoft Visual Studio<\/strong>:<\/p>\n<pre><code>1&gt;test2.obj : error LNK2001: unresolved external symbol \"void __cdecl foo(void)\" (?foo@@YAXXZ)\n1&gt;test2.obj : error LNK2001: unresolved external symbol \"int x\" (?x@@3HA)\n1&gt;test2.obj : error LNK2001: unresolved external symbol \"public: virtual __thiscall A::~A(void)\" (??1A@@UAE@XZ)\n1&gt;test2.obj : error LNK2001: unresolved external symbol \"public: virtual void __thiscall X::foo(void)\" (?foo@X@@UAEXXZ)\n1&gt;...\\test2.exe : fatal error LNK1120: 4 unresolved externals\n<\/code><\/pre>\n<p>Common causes include:<\/p>\n<ul>\n<li>Failure to link against appropriate libraries\/object files or compile implementation files<\/li>\n<li>Declared and undefined variable or function.<\/li>\n<li>Common issues with class-type members<\/li>\n<li>Template implementations not visible.<\/li>\n<li>Symbols were defined in a C program and used in C++ code.<\/li>\n<li>Incorrectly importing\/exporting methods\/classes across modules\/dll. (MSVS specific)<\/li>\n<li>Circular library dependency<\/li>\n<li>undefined reference to `WinMain@16&#8242;<\/li>\n<li>Interdependent library order<\/li>\n<li>Multiple source files of the same name<\/li>\n<li>Mistyping or not including the .lib extension when using the <code>#pragma<\/code> (Microsoft Visual Studio)<\/li>\n<li>Problems with template friends<\/li>\n<li>Inconsistent <code>UNICODE<\/code> definitions<\/li>\n<li>Missing &#8220;extern&#8221; in const variable declarations\/definitions (C++ only)<\/li>\n<li>Visual Studio Code not configured for a multiple file project<\/li>\n<\/ul>\n<\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">9<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved What is an undefined reference\/unresolved external symbol error and how do I fix it? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Compiling a C++ program takes place in several steps, as specified by 2.2 (credits to Keith Thompson for the reference): The precedence among the syntax rules of translation is specified by the following phases [see footnote]. Physical source file characters are mapped, in an implementation-defined manner, to the basic source character set (introducing new-line &#8230; <a title=\"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\" aria-label=\"More on (Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324,364,372,373,374],"class_list":["post-3848","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c","tag-c-faq","tag-linker-errors","tag-undefined-reference","tag-unresolved-external"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Compiling a C++ program takes place in several steps, as specified by 2.2 (credits to Keith Thompson for the reference): The precedence among the syntax rules of translation is specified by the following phases [see footnote]. Physical source file characters are mapped, in an implementation-defined manner, to the basic source character set (introducing new-line ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-20T14:17:59+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?\",\"datePublished\":\"2022-08-20T14:17:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\"},\"wordCount\":593,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"c++\",\"c++-faq\",\"linker-errors\",\"undefined-reference\",\"unresolved-external\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\",\"name\":\"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-08-20T14:17:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb","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:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/","og_locale":"en_US","og_type":"article","og_title":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb","og_description":"[ad_1] Compiling a C++ program takes place in several steps, as specified by 2.2 (credits to Keith Thompson for the reference): The precedence among the syntax rules of translation is specified by the following phases [see footnote]. Physical source file characters are mapped, in an implementation-defined manner, to the basic source character set (introducing new-line ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/","og_site_name":"JassWeb","article_published_time":"2022-08-20T14:17:59+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?","datePublished":"2022-08-20T14:17:59+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/"},"wordCount":593,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++","c++-faq","linker-errors","undefined-reference","unresolved-external"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/","url":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/","name":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-08-20T14:17:59+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"(Solved) What is an undefined reference\/unresolved external symbol error and how do I fix it?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/3848","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=3848"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/3848\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=3848"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=3848"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=3848"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}