{"id":802,"date":"2023-07-31T18:54:56","date_gmt":"2023-07-31T15:54:56","guid":{"rendered":"https:\/\/mryed.com\/?p=802"},"modified":"2023-07-31T18:54:58","modified_gmt":"2023-07-31T15:54:58","slug":"spfx-webpart-olusturma","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/","title":{"rendered":"Sharepoint SPFx Webpart Creation - React"},"content":{"rendered":"<p>SPFx (SharePoint Framework) is a framework developed by Microsoft and designed to facilitate customization and application development in SharePoint. This framework can be used to create web parts, page extensions and Microsoft Teams applications. Now let's move on to sharepoint SPFX webpart creation steps.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">SPFx Webpart Creation<\/h2>\n\n\n\n<p>SPFx offers developers a modern experience and provides the ability to use JavaScript, TypeScript, HTML, CSS and other popular web technologies. It also provides easy access to SharePoint's features and data. <\/p>\n\n\n\n<p>Essentials needed to create a webpart;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A modern browser (Edge, Firefox, Chrome)<\/li>\n\n\n\n<li>Node.Js<\/li>\n\n\n\n<li>Gulp<\/li>\n\n\n\n<li>Yeoman<\/li>\n\n\n\n<li>Compiler (Visual Studio Code)<\/li>\n<\/ul>\n\n\n\n<p>First, let's come to the editing screen of the application we opened in <a href=\"https:\/\/nodejs.org\/en\/blog\/release\/v17.7.1\">node.js.<\/a> If it is not installed on your computer, you can make the necessary installations via the link. If it is already installed, you can check the version by typing the following code in the terminal.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>node --version<\/code><\/pre>\n\n\n\n<p>I am using v16.20.1. Very low or high versions can create incompatibility.<\/p>\n\n\n\n<p>Let's install gulp, yeoman and microsoft generator with the following single line code. At this stage, it is useful to open the terminal with admin authorization. You can install them individually, but I preferred batch installation.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npm install gulp-cli yo @microsoft\/generator-sharepoint --global<\/code><\/pre>\n\n\n\n<p>After the relevant installations, we can create a webpart. We write the following code in our terminal.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>yo @microsoft\/sharepoint<\/code><\/pre>\n\n\n\n<p>Then it will ask for solution name information. After entering this information, I make a selection because I will create a \"WebPart\". I am asked to enter a WebPart name. I type \"MyWebPart\" for testing purposes. After this process, I am asked for the template I want to use. I choose \"React\" here. After this selection, the necessary installations will be made. This process may take a little longer.<\/p>\n\n\n\n<p>When the installation process is finished, the certificate process is done with the code below. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>gulp trust-dev-cert<\/code><\/pre>\n\n\n\n<p>Now we can view the webpart we have created. We can view it by running the following code in the created project directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>gulp serve<\/code><\/pre>\n\n\n\n<p> If the link to the page to be displayed is incorrect, go to the created project directory. Find the \"serve.json\" file in the config file. Replace the \"initialPage\" part in this file with your own tenant. Then type \"gulp serve\" again in the terminal and display the webpart.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"491\" src=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-1024x491.png\" alt=\"\" class=\"wp-image-804\" srcset=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-1024x491.png 1024w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-300x144.png 300w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-768x369.png 768w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-1536x737.png 1536w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru-18x9.png 18w, https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-doviz-kuru.png 1792w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p>Note: Since you are logged in to your tenant, you will be asked to log in with your microsoft account at the viewing stage.<\/p>\n\n\n\n<p>In the window that opens to upload the webpart to the page, click on the webpart name you have created by pressing the \"+\" icon. You will be presented with a standard template. This template comes from the \".tsx\" file at \"src\\webparts\\{webpart name}\\components\". You can change your webpart by editing this file. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">SPFx Webpart Publishing<\/h3>\n\n\n\n<p>Before releasing an application, we create a \"debug\" version to make it ready for release.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>gulp bundle --ship<\/code><\/pre>\n\n\n\n<p>After creating the \"Debug\" version, we create the publishing package. SPFx applications are published with \".sppkg\" extension. We create this package with the following code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>gulp package-solution --ship<\/code><\/code><\/pre>\n\n\n\n<p>This command compresses the components in the project and creates a \".sppkg\" file under the \"sharepoint\/solution\" folder. You can publish this file to users from the <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/flutter\/flutter-sharepoint-veri-cekme-restapi-bearer\/\">sharepoint<\/a><\/em> admin center.<\/p>\n\n\n\n<p>That's it for SPFx webpart creation and publishing. See you in the next article content...<\/p>","protected":false},"excerpt":{"rendered":"<p>SPFx (SharePoint Framework) is a framework developed by Microsoft and designed to facilitate customization and application development in SharePoint. This framework can be used to create web parts, page extensions and Microsoft Teams applications. Now let's move on to sharepoint SPFX webpart creation steps.<\/p>","protected":false},"author":1,"featured_media":803,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,83,64,11],"tags":[86],"class_list":["post-802","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kodlama","category-power-platform","category-react","category-yazilim","tag-sharepoint-webpart-gelistirme"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.\" \/>\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\/spfx-webpart-olusturma\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-31T15:54:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-31T15:54:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.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=\"3 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\\\/spfx-webpart-olusturma\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"Sharepoint SPFx Webpart Olu\u015fturma &#8211; React\",\"datePublished\":\"2023-07-31T15:54:56+00:00\",\"dateModified\":\"2023-07-31T15:54:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/\"},\"wordCount\":581,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/sharepoint-spfx-webpart.jpg\",\"keywords\":[\"sharepoint webpart geli\u015ftirme\"],\"articleSection\":[\"Kodlama\",\"Power Platform\",\"React\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/\",\"name\":\"Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/sharepoint-spfx-webpart.jpg\",\"datePublished\":\"2023-07-31T15:54:56+00:00\",\"dateModified\":\"2023-07-31T15:54:58+00:00\",\"description\":\"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/sharepoint-spfx-webpart.jpg\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/sharepoint-spfx-webpart.jpg\",\"width\":1920,\"height\":900,\"caption\":\"microsoft-sharepoint-spfx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/power-platform\\\/spfx-webpart-olusturma\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sharepoint SPFx Webpart Olu\u015fturma &#8211; React\"}]},{\"@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":"Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre","description":"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.","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\/spfx-webpart-olusturma\/","og_locale":"en_US","og_type":"article","og_title":"Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre","og_description":"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.","og_url":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/","og_site_name":"Yunus Emre","article_published_time":"2023-07-31T15:54:56+00:00","article_modified_time":"2023-07-31T15:54:58+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.jpg","type":"image\/jpeg"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"Sharepoint SPFx Webpart Olu\u015fturma &#8211; React","datePublished":"2023-07-31T15:54:56+00:00","dateModified":"2023-07-31T15:54:58+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/"},"wordCount":581,"commentCount":2,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.jpg","keywords":["sharepoint webpart geli\u015ftirme"],"articleSection":["Kodlama","Power Platform","React","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/","url":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/","name":"Sharepoint SPFx Webpart Olu\u015fturma - React - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.jpg","datePublished":"2023-07-31T15:54:56+00:00","dateModified":"2023-07-31T15:54:58+00:00","description":"Microsoft Sharepoint SPFx webpart olu\u015fturma ve react ile sayfa tasarlamak i\u00e7in ad\u0131m ad\u0131m yaz\u0131 i\u00e7eri\u011fini takip edebilirsiniz.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.jpg","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/sharepoint-spfx-webpart.jpg","width":1920,"height":900,"caption":"microsoft-sharepoint-spfx"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/power-platform\/spfx-webpart-olusturma\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"Sharepoint SPFx Webpart Olu\u015fturma &#8211; React"}]},{"@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\/802","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=802"}],"version-history":[{"count":1,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/802\/revisions"}],"predecessor-version":[{"id":805,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/802\/revisions\/805"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/803"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}