<br />
<b>Deprecated</b>:  YoastSEO_Vendor\Symfony\Component\DependencyInjection\Container::__construct(): Implicitly marking parameter $parameterBag as nullable is deprecated, the explicit nullable type must be used instead in <b>/home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Container.php</b> on line <b>60</b><br />
<br />
<b>Deprecated</b>:  YoastSEO_Vendor\League\OAuth2\Client\Provider\AbstractProvider::authorize(): Implicitly marking parameter $redirectHandler as nullable is deprecated, the explicit nullable type must be used instead in <b>/home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/AbstractProvider.php</b> on line <b>416</b><br />
<br />
<b>Deprecated</b>:  YoastSEO_Vendor\GuzzleHttp\Client::getConfig(): Implicitly marking parameter $option as nullable is deprecated, the explicit nullable type must be used instead in <b>/home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Client.php</b> on line <b>181</b><br />
<br />
<b>Deprecated</b>:  YoastSEO_Vendor\GuzzleHttp\ClientInterface::getConfig(): Implicitly marking parameter $option as nullable is deprecated, the explicit nullable type must be used instead in <b>/home/nubelus/sharedove/adisjugo/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php</b> on line <b>77</b><br />
{"id":50,"date":"2008-04-16T23:51:00","date_gmt":"2008-04-16T22:51:00","guid":{"rendered":"http:\/\/blog.sharedove.com\/sharedoveblog\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/"},"modified":"2008-04-16T23:51:00","modified_gmt":"2008-04-16T22:51:00","slug":"read-the-bdc-data-from-moss-object-model","status":"publish","type":"post","link":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/","title":{"rendered":"Read the BDC data from MOSS Object Model"},"content":{"rendered":"<p>So, what do you do the first when you want to create a rock-solid BDC system with your SharePoint?<\/p>\n<p>If your BDC is going to fetch it&#8217;s data from the web service, you will of course first create the service, which must contain at least two methods: the IdEnumerator and SpecificFinder compliant methods (to simplify: IdEnumerator compliant method returns just a set of the &quot;primary keys&quot; for all the data your BDC system is offering, and SpecificFinder compliant method returns all the data for a given, specified &quot;primary key&quot;.<\/p>\n<p>  <!--more-->  <\/p>\n<p>Then, you have read <a href=\"http:\/\/developers.de\/blogs\/rolf_nebhuth\/archive\/2008\/01\/16\/business-data-catalog-configuration-for-webservice-to-use-in-the-enterprise-search.aspx\" target=\"_blank\">Rolf&#8217;s post<\/a> about proper way of configuring the BDC to work with your web services.<\/p>\n<p>You have imported your BDC into Applications, created a web part to display the BDC data in the SharePoint site, and everything is going well.<\/p>\n<p>Now, you need to use this BDC data in the SharePoint Object model. It&#8217;s trickier then one might think, but still quite straight-forward once you get it.<\/p>\n<p>In this code example, I&#8217;ll show how to connect to the SharedServices, select the Application instance from the SharedServices, and Entity from the ApplicationInstance. Then I&#8217;ll invoke the IdEnumerator to get the list of all the keys, and then invoke specific finder over every single key.<\/p>\n<p>As I have said, quite straight-forward once you figure it out <img decoding=\"async\" style=\"border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none\" class=\"wlEmoticon wlEmoticon-smile\" alt=\"Smile\" src=\"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png\" \/><\/p>\n<div style=\"padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px\" id=\"scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:a62c9f2d-8e14-464c-b341-1d825cea264d\" class=\"wlWriterEditableSmartContent\">\n<pre class=\"brush: c#\">\/\/\n\/\/let's first say which SharedServices are we going to use\n\/\/\nSqlSessionProvider.Instance().SetSharedResourceProviderToUse(\"SharedServices1\");\n\n\/\/\n\/\/for fun, let's just list all application insances registered in SharedServices\nNamedLobSystemInstanceDictionary sysInstances = ApplicationRegistry.GetLobSystemInstances();\nm_LogText.AppendText(\"Installed BDC Applications: \" + Environment.NewLine);\nforeach (string applicationName in sysInstances.Keys)\n    m_LogText.AppendText(applicationName + Environment.NewLine);\n\n\n\/\/\n\/\/let's take our instance we acutually want to use\nLobSystemInstance erpLobAppInstance = sysInstances[\"ERPServices_Instance\"];\n\n\/\/\n\/\/Let's list all entities which are in this instance\nNamedEntityDictionary entities = erpLobAppInstance.GetEntities();\nforeach (string key in entities.Keys)\n{\n    Entity entity = entities[key];\n    m_LogText.AppendText(\"Entity: Key - \" + key + \" - ID - \" + entity.Id.ToString() + Environment.NewLine);\n}\n\n\/\/\n\/\/let's take entity we actually need\nEntity lobEntity = entities[\"Partner\"];\n\n\n\/\/\n\/\/entity contains all the info we need for the further work - \n\/\/methods, results...\n\/\/let's read info about the fields cointained in the SpecificFinder result\n\/\/means, when we execute SpecificFinder (method that returns one specific record based on\n\/\/the id (primary key) of that record\nField fieldID = lobEntity.GetSpecificFinderView().Fields.Find(delegate(Field f) { return (f.Name == \"PartnerId\"); });\nField fieldPartnerName = lobEntity.GetSpecificFinderView().Fields.Find(delegate(Field f) { return (f.Name == \"PartnerName\"); });\nField fieldPartnerAddress = lobEntity.GetSpecificFinderView().Fields.Find(delegate(Field f) { return (f.Name == \"Address\"); });\n\n\/\/\n\/\/let's now read all the methods which are contained in the entity\nIEnumerator&lt;string&gt; methodsInEntity = lobEntity.GetMethodInstances().Keys.GetEnumerator();\n\n\/\/this is a very important step, because, we can, for example, directly invoke\n\/\/SpecificFinder method (Entity.FindSpecific()), \n\/\/but we can not do the same for IdEnuumerator method\n\/\/we have now to iterate through all entity methods to find our IdEnumerator\nMethodInstance idEnumeratorMethod = null;\nwhile (methodsInEntity.MoveNext())\n{\n    \/\/let's read the name and the type of the current method\n    String methodName = (String)methodsInEntity.Current;\n    MethodInstance thisMethod = (MethodInstance)lobEntity.GetMethodInstances()[methodName];\n\n    \/\/if the current method's type is \"IdEnumerator\", that's exactly what we need\n    String methodType = thisMethod.MethodInstanceType.ToString();\n    if (methodType.Equals(\"IdEnumerator\"))\n    {\n        idEnumeratorMethod = thisMethod;\n        break;\n    }\n\n}\n\n\/\/\n\/\/let's now execute the idEnumeratorMethod, and get all the instances (result)\n\/\/which it returns, \n\/\/IdEnumerator results usually contains only \"ID\", but can also contain \n\/\/the creatation date or some other system field\nIEntityInstanceEnumerator idEnumeratorInstances = (IEntityInstanceEnumerator)lobEntity.Execute(idEnumeratorMethod, erpLobAppInstance);\n\n\/\/\n\/\/let's now iterate through the results the IdEnumerator method has returned\n\/\/and let's get our IDs from the IdEnumerator result\nwhile (idEnumeratorInstances.MoveNext())\n{\n    \/\/take the result\n    IEntityInstance idEnumeratorResultIntstance =\n        (IEntityInstance)idEnumeratorInstances.Current;\n\n    \/\/convert this result (IEntityInstance) to the DataRow for easier manipulation\n    DataRow row = idEnumeratorResultIntstance.EntityAsDataRow(idEnumeratorResultIntstance.EntityAsDataTable);\n\n    \/\/let's now take the primary key we actually wanted from the beginning\n    Object primaryKeyValue = row[\"PartnerId\"];\n\n    \/\/now, let's call the SpecificFinder method over this primary key (ID)\n    \/\/on that way we will get all the data we have for that object\n    IEntityInstance specificFinderResult = lobEntity.FindSpecific(primaryKeyValue, erpLobAppInstance);\n\n    \/\/let's pick up the result values\n    string pid = specificFinderResult[fieldID].ToString();\n    string pname = specificFinderResult[fieldPartnerName].ToString();\n    string paddress = specificFinderResult[fieldPartnerAddress].ToString();\n\n    \/\/and display them on the screen...\n    m_LogText.AppendText(pid + \" - \" + pname + \" - \" + paddress + Environment.NewLine);\n\n}<\/pre>\n<\/div>\n<div class=\"fb-background-color\">\n\t\t\t  <div \n\t\t\t  \tclass = \"fb-comments\" \n\t\t\t  \tdata-href = \"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\"\n\t\t\t  \tdata-numposts = \"59\"\n\t\t\t  \tdata-lazy = \"true\"\n\t\t\t\tdata-colorscheme = \"light\"\n\t\t\t\tdata-order-by = \"time\"\n\t\t\t\tdata-mobile=true>\n\t\t\t  <\/div><\/div>\n\t\t  <style>\n\t\t    .fb-background-color {\n\t\t\t\tbackground:  !important;\n\t\t\t}\n\t\t\t.fb_iframe_widget_fluid_desktop iframe {\n\t\t\t    width: 100% !important;\n\t\t\t}\n\t\t  <\/style>\n\t\t  ","protected":false},"excerpt":{"rendered":"<p>So, what do you do the first when you want to create a rock-solid BDC system with your SharePoint? If your BDC is going to fetch it&#8217;s data from the web service, you will of course first create the service, which must contain at least two methods: the IdEnumerator and SpecificFinder compliant methods (to simplify: [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[11],"tags":[22,55],"class_list":["post-50","post","type-post","status-publish","format-standard","hentry","category-development","tag-bdc","tag-sharepoint"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Read the BDC data from MOSS Object Model - Adis Jugo blog<\/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:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Read the BDC data from MOSS Object Model - Adis Jugo blog\" \/>\n<meta property=\"og:description\" content=\"So, what do you do the first when you want to create a rock-solid BDC system with your SharePoint? If your BDC is going to fetch it&#8217;s data from the web service, you will of course first create the service, which must contain at least two methods: the IdEnumerator and SpecificFinder compliant methods (to simplify: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\" \/>\n<meta property=\"og:site_name\" content=\"Adis Jugo blog\" \/>\n<meta property=\"article:published_time\" content=\"2008-04-16T22:51:00+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png\" \/>\n<meta name=\"author\" content=\"adis.jugo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"adis.jugo\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\",\"url\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\",\"name\":\"Read the BDC data from MOSS Object Model - Adis Jugo blog\",\"isPartOf\":{\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png\",\"datePublished\":\"2008-04-16T22:51:00+00:00\",\"author\":{\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/a5ca63552094ce9d5a0440f3a1ac9a4c\"},\"breadcrumb\":{\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage\",\"url\":\"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png\",\"contentUrl\":\"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.sharedove.com\/adisjugo\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Read the BDC data from MOSS Object Model\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/#website\",\"url\":\"https:\/\/blog.sharedove.com\/adisjugo\/\",\"name\":\"Adis Jugo blog\",\"description\":\"The Southern Side\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.sharedove.com\/adisjugo\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/a5ca63552094ce9d5a0440f3a1ac9a4c\",\"name\":\"adis.jugo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cc5a23cf1bd0b9d8401c9dd65c6c141041ec0c6e37eedbb511779e4a40a198fd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cc5a23cf1bd0b9d8401c9dd65c6c141041ec0c6e37eedbb511779e4a40a198fd?s=96&d=mm&r=g\",\"caption\":\"adis.jugo\"},\"url\":\"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/author\/adisjugo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Read the BDC data from MOSS Object Model - Adis Jugo blog","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:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/","og_locale":"en_US","og_type":"article","og_title":"Read the BDC data from MOSS Object Model - Adis Jugo blog","og_description":"So, what do you do the first when you want to create a rock-solid BDC system with your SharePoint? If your BDC is going to fetch it&#8217;s data from the web service, you will of course first create the service, which must contain at least two methods: the IdEnumerator and SpecificFinder compliant methods (to simplify: [&hellip;]","og_url":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/","og_site_name":"Adis Jugo blog","article_published_time":"2008-04-16T22:51:00+00:00","og_image":[{"url":"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png","type":"","width":"","height":""}],"author":"adis.jugo","twitter_card":"summary_large_image","twitter_misc":{"Written by":"adis.jugo","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/","url":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/","name":"Read the BDC data from MOSS Object Model - Adis Jugo blog","isPartOf":{"@id":"https:\/\/blog.sharedove.com\/adisjugo\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage"},"image":{"@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage"},"thumbnailUrl":"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png","datePublished":"2008-04-16T22:51:00+00:00","author":{"@id":"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/a5ca63552094ce9d5a0440f3a1ac9a4c"},"breadcrumb":{"@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#primaryimage","url":"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png","contentUrl":"http:\/\/blog.sharedove.com\/sharedoveblog\/wp-content\/uploads\/2010\/11\/wlEmoticon-smile.png"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/2008\/04\/16\/read-the-bdc-data-from-moss-object-model\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.sharedove.com\/adisjugo\/"},{"@type":"ListItem","position":2,"name":"Read the BDC data from MOSS Object Model"}]},{"@type":"WebSite","@id":"https:\/\/blog.sharedove.com\/adisjugo\/#website","url":"https:\/\/blog.sharedove.com\/adisjugo\/","name":"Adis Jugo blog","description":"The Southern Side","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.sharedove.com\/adisjugo\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/a5ca63552094ce9d5a0440f3a1ac9a4c","name":"adis.jugo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.sharedove.com\/adisjugo\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cc5a23cf1bd0b9d8401c9dd65c6c141041ec0c6e37eedbb511779e4a40a198fd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cc5a23cf1bd0b9d8401c9dd65c6c141041ec0c6e37eedbb511779e4a40a198fd?s=96&d=mm&r=g","caption":"adis.jugo"},"url":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/author\/adisjugo\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/posts\/50","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/comments?post=50"}],"version-history":[{"count":0,"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/posts\/50\/revisions"}],"wp:attachment":[{"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/media?parent=50"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/categories?post=50"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.sharedove.com\/adisjugo\/index.php\/wp-json\/wp\/v2\/tags?post=50"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}