{"id":826,"date":"2023-10-15T15:31:28","date_gmt":"2023-10-15T12:31:28","guid":{"rendered":"https:\/\/mryed.com\/?p=826"},"modified":"2023-10-15T15:31:29","modified_gmt":"2023-10-15T12:31:29","slug":"project-online-baglantisi","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/","title":{"rendered":"Project Online Connection with .Net Csom"},"content":{"rendered":"<p>If we want to connect to microsoft project online in a web or desktop application we have written, we must have a microsoft account that can enter this tenant. With this microsoft account we will connect to project online with our application.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Project Online Ba\u011flant\u0131s\u0131<\/h2>\n\n\n\n<p>If we want to connect to <em><a href=\"https:\/\/learn.microsoft.com\/en-us\/office\/client-developer\/project\/developing-a-project-online-application-using-the-client-side-object-model\">microsoft<\/a><\/em> project online in a web or desktop application we have written, we must have a microsoft account that can enter this tenant. With this microsoft account, we will connect to project online with our application<\/p>\n\n\n\n<p>However, there is an important point here. If the account you will login to has multi factor authentication, the process changes. If you don't want to make it difficult at this stage, you can make the process easier by turning off the multi factor of this user. If you want to log in without turning off multi factor, I can prepare a different content about it.<\/p>\n\n\n\n<p> Related libraries;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using Microsoft.SharePoint.Client;\nusing Microsoft.ProjectServer.Client;<\/code><\/pre>\n\n\n\n<p>Connection codes;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  string siteUrl = \"https:\/\/{tenant}.sharepoint.com\/sites\/pwa\";\n  string username = \"mryed@{tenant}.com\";\n  string password = \"hesapsifresi\";\n\n              \/\/Proje ba\u011flant\u0131s\u0131 olu\u015fturma\n              using (ProjectContext context = new ProjectContext(siteUrl))\n              {\n                  SecureString securePassword = new SecureString();\n                  foreach (char c in password.ToCharArray())\n                  {\n                      securePassword.AppendChar(c);\n                  }\n                context.Credentials = new SharePointOnlineCredentials(username, securePassword);\n                var allprojects = context.Projects;\n                context.Load(allprojects);\n                context.ExecuteQuery();\n\n                \/\/Proje say\u0131s\u0131n\u0131, ad\u0131n\u0131 ve guid id bilgilerini \u00e7ekiyoruz.\n                Console.WriteLine(\"Projects:\" + allprojects.Count);\n                Console.WriteLine(\"-----------\");\n                foreach (PublishedProject project in allprojects)\n                {\n                    Console.WriteLine(\"Proje Adi: \" + project.Name);\n                    Console.WriteLine(\"Proje GUID: \" + project.Id);\n                    Console.WriteLine(\"-----------\");\n                }\n                try\n                {\n                      Guid projectId = new Guid(\"{Proje GUID}\");\n                      PublishedProject project = context.Projects.GetByGuid(projectId);\n                      context.Load(project);\n                      context.Load(project, p =&gt; p.StartDate, p =&gt; p.Description, p =&gt; p.CustomFields, p=&gt;p.Owner);\n                      context.ExecuteQuery();\n                      Console.WriteLine(\"Projenin Ba\u015flang\u0131\u00e7 Tarihi: \" + project.StartDate);\n                      Console.WriteLine(\"Proje A\u00e7\u0131klamas\u0131: \" + project.Description);\n                      Console.WriteLine(\"Proje Sahibi: \" + project.Owner);\n\n                  }\n                  catch (Exception ex)\n                  {\n                      Console.WriteLine(\"Hata: \" + ex.Message);\n                  }\n              }<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Project Online Data Extraction<\/h2>\n\n\n\n<p>Let me briefly explain the codes at this stage. First of all, we get our user information in string variables. Then we prepare a <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/\">context<\/a><\/em> with this information. Now we will do our operations with this context. In the rest of the code, we pull all the projects and print how many projects we have, project names and guid numbers. This guid number is important for us. Because later we will connect to the project with these numbers.<\/p>\n\n\n\n<p>I added a try-catch blog to connect to the project. In this blog, I connect to the project by typing the guid number of the project. At this stage, I pull information such as the owner of the project and the start date. <\/p>\n\n\n\n<p>There are tasks in these projects. In another article, I will talk about how to pull data from these tasks and how to update data.<\/p>\n\n\n\n<p>See you in the next article content...<\/p>","protected":false},"excerpt":{"rendered":"<p>If we want to connect to microsoft project online in a web or desktop application we have written, we must have a microsoft account that can enter this tenant. With this microsoft account we will connect to project online with our application.<\/p>","protected":false},"author":1,"featured_media":829,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[55,23,83,11],"tags":[91],"class_list":["post-826","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c-kodlama","category-kodlama","category-power-platform","category-yazilim","tag-net-connect-project-online"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>.Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\".Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-15T12:31:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-15T12:31:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mr.YED\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mr.YED\" \/>\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:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\".Net Csom ile Project Online Ba\u011flant\u0131s\u0131\",\"datePublished\":\"2023-10-15T12:31:28+00:00\",\"dateModified\":\"2023-10-15T12:31:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/\"},\"wordCount\":311,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/project-online-csom.jpg\",\"keywords\":[\".net connect project online\"],\"articleSection\":[\"C#\",\"Kodlama\",\"Power Platform\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/\",\"name\":\".Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/project-online-csom.jpg\",\"datePublished\":\"2023-10-15T12:31:28+00:00\",\"dateModified\":\"2023-10-15T12:31:29+00:00\",\"description\":\"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/project-online-csom.jpg\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/project-online-csom.jpg\",\"width\":1920,\"height\":900,\"caption\":\"sharepoint-project-online\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/project-online-baglantisi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\".Net Csom ile Project Online Ba\u011flant\u0131s\u0131\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\",\"url\":\"https:\\\/\\\/mryed.com\\\/\",\"name\":\"Yunus Emre\",\"description\":\"Software Engineer\",\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mryed.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\",\"name\":\"Mr.YED\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"width\":360,\"height\":360,\"caption\":\"Mr.YED\"},\"logo\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\"},\"description\":\"Mobil, web ve Microsoft tabanl\u0131 uygulamalar geli\u015ftiren bir yaz\u0131l\u0131m m\u00fchendisiyim. Kariyerim boyunca farkl\u0131 sekt\u00f6rlerde edindi\u011fim deneyimlerle \u00f6zellikle Power Platform, Power Apps, Power Automate ve kurumsal s\u00fcre\u00e7 otomasyonu konular\u0131nda uzmanla\u015ft\u0131m. Bu blogda yaz\u0131l\u0131m geli\u015ftirme, otomasyon ve Microsoft teknolojileri \u00fczerine edindi\u011fim tecr\u00fcbeleri payla\u015f\u0131yorum.\",\"sameAs\":[\"http:\\\/\\\/mryed.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/yunus-emre-demirel\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":".Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre","description":"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.","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:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/","og_locale":"en_US","og_type":"article","og_title":".Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre","og_description":"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.","og_url":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/","og_site_name":"Yunus Emre","article_published_time":"2023-10-15T12:31:28+00:00","article_modified_time":"2023-10-15T12:31:29+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg","type":"image\/jpeg"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":".Net Csom ile Project Online Ba\u011flant\u0131s\u0131","datePublished":"2023-10-15T12:31:28+00:00","dateModified":"2023-10-15T12:31:29+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/"},"wordCount":311,"commentCount":0,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg","keywords":[".net connect project online"],"articleSection":["C#","Kodlama","Power Platform","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/","url":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/","name":".Net Csom ile Project Online Ba\u011flant\u0131s\u0131 - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg","datePublished":"2023-10-15T12:31:28+00:00","dateModified":"2023-10-15T12:31:29+00:00","description":"Sharepoint project online ba\u011flant\u0131s\u0131 csom ile nas\u0131l yap\u0131l\u0131r konusuna de\u011findim. Projeye ba\u011flan\u0131p veri \u00e7ekme i\u015flemini yapt\u0131m.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/10\/project-online-csom.jpg","width":1920,"height":900,"caption":"sharepoint-project-online"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/project-online-baglantisi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":".Net Csom ile Project Online Ba\u011flant\u0131s\u0131"}]},{"@type":"WebSite","@id":"https:\/\/mryed.com\/#website","url":"https:\/\/mryed.com\/","name":"Yunus Emre","description":"Software Engineer","publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mryed.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1","name":"Mr.YED","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","url":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","width":360,"height":360,"caption":"Mr.YED"},"logo":{"@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png"},"description":"I am a software engineer who develops mobile, web, and Microsoft-based applications. Throughout my career, I have gained experience in various industries and specialized in Power Platform, Power Apps, Power Automate, and enterprise process automation. In this blog, I share my experiences in software development, automation, and Microsoft technologies.","sameAs":["http:\/\/mryed.com","https:\/\/www.linkedin.com\/in\/yunus-emre-demirel\/"]}]}},"_links":{"self":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/826","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/comments?post=826"}],"version-history":[{"count":2,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/826\/revisions"}],"predecessor-version":[{"id":830,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/826\/revisions\/830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/829"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=826"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=826"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=826"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}