{"id":706,"date":"2023-03-25T19:18:15","date_gmt":"2023-03-25T16:18:15","guid":{"rendered":"https:\/\/mryed.com\/?p=706"},"modified":"2023-07-25T21:12:09","modified_gmt":"2023-07-25T18:12:09","slug":"flutter-sharepoint-veri-cekme-restapi-bearer","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/flutter\/flutter-sharepoint-veri-cekme-restapi-bearer\/","title":{"rendered":"Flutter Sharepoint Data Pull - RestApi Bearer"},"content":{"rendered":"<p>Recently, I needed to pull data from Sharepoint lists with C# for a few projects. Then I wanted to do the same with Flutter. For this reason, I will explain the Flutter sharepoint data extraction process in this article. <\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Flutter Sharepoint Data Pull<\/h2>\n\n\n\n<p>With Flutter, we can pull the data we want from our sharepoint lists. To do this, we first create application information with the link below. \"Mryed\" is my site name in the sharepoint application. You can write the name of your own site there.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:\/\/{tenantname}.sharepoint.com\/sites\/Mryed\/_layouts\/15\/appregnew.aspx<\/code><\/pre>\n\n\n\n<p>You can write down the client ID and secret key from the \"appregnew\" page in a text document.  I wrote \"localhost\" in the application domain as a test and \"https:\/\/localhost\" in the URL field. Afterwards;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:\/\/{tenantname}.sharepoint.com\/sites\/Mryed\/_layouts\/15\/appinv.aspx<\/code><\/pre>\n\n\n\n<p>page and write the application ID we noted on the previous page here. When you press the search key, the fields under that application ID will be filled. We write the following code in the \"Permission Request XML:\" field at the bottom of the form.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;AppPermissionRequests AllowAppOnlyPolicy=\"true\"&gt;  \n   &lt;AppPermissionRequest Scope=\"http:\/\/sharepoint\/content\/sitecollection\" \n    Right=\"FullControl\" \/&gt;\n&lt;\/AppPermissionRequests&gt;<\/code><\/pre>\n\n\n\n<p>More details for Sharepoint permission XML codes; <em><a href=\"https:\/\/medium.com\/ng-sp\/sharepoint-add-in-permission-xml-cheat-sheet-64b87d8d7600\">Medium<\/a><\/em>.<\/p>\n\n\n\n<p>After clicking the Create button, there will be a confirmation field that says \"Do you trust the {Title} application?\". Click on the \"trust\" button and we will be redirected to the \"Site Settings\" page. On the site settings page, we enter the \"Site collection application permissions\" field. You can view the application permission you created here. You can take note of the field written in the application identifier column here. We will especially use the part after the \"@\" sign. <\/p>\n\n\n\n<p>After this stage, we are done with the <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/sharepoint-liste-tasima-uygulamasi\/\">sharepoint<\/a><\/em> side. What we need now is the Bearer token we need to connect from Flutter. I use the postman application for this. We enter the link below in the postman url field. The part that says code is the area after the \"@\" sign that we note.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;accounts.accesscontrol.windows.net\/{kod}\/tokens\/oAuth\/2<\/code><\/pre>\n\n\n\n<p>Then we come to the body field in postman. The client ID and secret key are the information we jot down in the text document in the first step. The code is again the part after the \"@\" sign.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>grant_type:client_credentials\nclient_id:{istemci kimli\u011fi}\nclient_secret:{gizli anahtar}\nresource:00000003-0000-0ff1-ce00-000000000000\/{tenant}.sharepoint.com@{kod}<\/code><\/pre>\n\n\n\n<p>Now we can click on the \"Send\" button. Here we will get a list with \"token_type\": \"Bearer\" in the list. Here we copy the long code in the \"access-token\" field into the text document. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Flutter RestApi<\/h2>\n\n\n\n<p>Now that we have the access token information, we can switch to the flutter side. Paste the code \"access-token\" into the string value named tokenValue. There will be a space after Bearer and after the space will be your access token information. Don't forget to write your own tenant information in the sharepoint link in Uri.parse.<\/p>\n\n\n\n<p>In the code below, I pulled the \"name, surname, registration\" information from the \"Personnel\" list on the \"Mryed\" site. You can change the code according to the data you want to pull. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import 'dart:convert';\nimport 'package:http\/http.dart' as http;\n\nclass Personel {\n  final String adSoyad;\n  final String sicil;\n\n  Personel({required this.adSoyad, required this.sicil});\n\n  factory Personel.fromJson(Map&lt;String, dynamic&gt; json) {\n    return Personel(\n      adSoyad: json&#91;'AdSoyad'],\n      sicil: json&#91;'Sicil'],\n    );\n  }\n  static Future&lt;List&lt;Personel&gt;&gt; getPersonelList() async {\n    String tokenValue =\n        \"Bearer {token alan\u0131}\";\n    final response = await http.get(\n        Uri.parse(\n            'https:\/\/{tenant}.sharepoint.com\/sites\/MrYed\/_api\/web\/lists\/getbytitle(\\'Personel\\')\/items?\\$select=AdSoyad,Sicil'),\n        headers: {\n          'Accept': 'application\/json;odata=verbose',\n          'Authorization': '$tokenValue'\n        });\n    if (response.statusCode == 200) {\n      print(\"Basarili\");\n      final data = jsonDecode(response.body)&#91;'d']&#91;'results'] as List&lt;dynamic&gt;;\n      return data.map((item) =&gt; Personel.fromJson(item)).toList();\n    } else {\n      throw Exception('Failed to load data');\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<p>That's it for Flutter Sharepoint data extraction. In the following stages, I can do sharepoint data extraction, deletion and update operations with flutter. See you in the next article content...<\/p>","protected":false},"excerpt":{"rendered":"<p>Recently, I needed to pull data from Sharepoint lists with C# for a few projects. Then I wanted to do the same with Flutter. For this reason, I will explain the Flutter sharepoint data extraction process in this article.<\/p>","protected":false},"author":1,"featured_media":722,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[79,23,83,11],"tags":[80],"class_list":["post-706","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-flutter","category-kodlama","category-power-platform","category-yazilim","tag-sharepoint"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.\" \/>\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\/flutter-sharepoint-veri-cekme-restapi-bearer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-25T16:18:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-25T18:12:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.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\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"Flutter Sharepoint Veri \u00c7ekme &#8211; RestApi Bearer\",\"datePublished\":\"2023-03-25T16:18:15+00:00\",\"dateModified\":\"2023-07-25T18:12:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/\"},\"wordCount\":486,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/flutter-sharepoint-restapi.jpg\",\"keywords\":[\"Sharepoint\"],\"articleSection\":[\"Flutter\",\"Kodlama\",\"Power Platform\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/\",\"name\":\"Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/flutter-sharepoint-restapi.jpg\",\"datePublished\":\"2023-03-25T16:18:15+00:00\",\"dateModified\":\"2023-07-25T18:12:09+00:00\",\"description\":\"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/flutter-sharepoint-restapi.jpg\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/flutter-sharepoint-restapi.jpg\",\"width\":1920,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/flutter-sharepoint-veri-cekme-restapi-bearer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Flutter Sharepoint Veri \u00c7ekme &#8211; RestApi Bearer\"}]},{\"@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":"Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre","description":"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.","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\/flutter-sharepoint-veri-cekme-restapi-bearer\/","og_locale":"en_US","og_type":"article","og_title":"Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre","og_description":"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.","og_url":"https:\/\/mryed.com\/en\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/","og_site_name":"Yunus Emre","article_published_time":"2023-03-25T16:18:15+00:00","article_modified_time":"2023-07-25T18:12:09+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.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\/flutter-sharepoint-veri-cekme-restapi-bearer\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"Flutter Sharepoint Veri \u00c7ekme &#8211; RestApi Bearer","datePublished":"2023-03-25T16:18:15+00:00","dateModified":"2023-07-25T18:12:09+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/"},"wordCount":486,"commentCount":4,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.jpg","keywords":["Sharepoint"],"articleSection":["Flutter","Kodlama","Power Platform","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/","url":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/","name":"Flutter Sharepoint Veri \u00c7ekme - RestApi Bearer - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.jpg","datePublished":"2023-03-25T16:18:15+00:00","dateModified":"2023-07-25T18:12:09+00:00","description":"Flutter sharepoint veri \u00e7ekme i\u015flemi i\u00e7in restapi bearer kulland\u0131k. Access token ile istedi\u011fimiz verilere eri\u015ftik.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.jpg","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/03\/flutter-sharepoint-restapi.jpg","width":1920,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/flutter-sharepoint-veri-cekme-restapi-bearer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"Flutter Sharepoint Veri \u00c7ekme &#8211; RestApi Bearer"}]},{"@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\/706","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=706"}],"version-history":[{"count":7,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/706\/revisions"}],"predecessor-version":[{"id":724,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/706\/revisions\/724"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/722"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}