{"id":544,"date":"2020-08-26T18:19:21","date_gmt":"2020-08-26T18:19:21","guid":{"rendered":"https:\/\/serkanseker.com\/?p=544"},"modified":"2020-12-09T18:31:08","modified_gmt":"2020-12-09T18:31:08","slug":"xamarin-android-currency-converter","status":"publish","type":"post","link":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/","title":{"rendered":"Xamarin.Android Currency Converter"},"content":{"rendered":"\n<p>In this post, I will show you a simple application of currency converter in Xamarin.Android. It will be an application that will write the amount of foreign currency to be converted and in which currencies it is wanted to translate and return a result.<\/p>\n\n\n\n<p>We will do this translation process by using the <a href=\"https:\/\/rate-exchange-1.appspot.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/rate-exchange-1.appspot.com\/<\/a> API. You can examine the site.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Currency Layout<\/h2>\n\n\n\n<p>Create an XML file named Currenct.xml by right clicking on the project and following <strong>Resources &gt; layout &gt; Add &gt; New Item &gt; XML File<\/strong> that named <strong>Currency.xml<\/strong>. Then paste these codes :<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-markup\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; \n&lt;LinearLayout\n    xmlns:android=&quot;http:\/\/schemas.android.com\/apk\/res\/android&quot;\n    android:orientation=&quot;vertical&quot;\n    android:layout_width=&quot;match_parent&quot;\n    android:layout_height=&quot;match_parent&quot;&gt;\n    \n    &lt;LinearLayout\n        android:orientation=&quot;vertical&quot;\n        android:minWidth=&quot;25px&quot;\n        android:minHeight=&quot;25px&quot;\n        android:layout_width=&quot;match_parent&quot;\n        android:layout_height=&quot;wrap_content&quot;\n        android:id=&quot;@+id\/linearLayout1&quot;&gt;\n   \n\n        &lt;EditText\n            android:layout_width=&quot;match_parent&quot;\n            android:layout_height=&quot;wrap_content&quot;\n            android:id=&quot;@+id\/msgText&quot; \n            android:layout_marginTop=&quot;10dp&quot;\/&gt;\n\n     &lt;\/LinearLayout&gt;\n    \n     &lt;LinearLayout\n        android:orientation=&quot;horizontal&quot;\n        android:minWidth=&quot;25px&quot;\n        android:minHeight=&quot;25px&quot;\n        android:layout_width=&quot;match_parent&quot;\n        android:layout_height=&quot;wrap_content&quot;\n        android:id=&quot;@+id\/linearLayout2&quot;&gt;\n\n        &lt;Button\n            android:text=&quot;$&quot;\n            android:layout_width=&quot;wrap_content&quot;\n            android:layout_height=&quot;wrap_content&quot;\n            android:id=&quot;@+id\/currencyBtn&quot;\n\/&gt;\n\n    &lt;\/LinearLayout&gt;\n    &lt;\/LinearLayout&gt; <\/code><\/pre>\n\n\n\n<p>When the button is clicked in this layout, it will be translated between currencies and written into EditText. You can also use Label here.<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Currency Activity<\/h2>\n\n\n\n<p>To make layout work, you need to create an Activity. To do this, right click on the Resources folder and <strong>Add &gt; New Item &gt; Activity<\/strong> named <strong>CurrencyActivity.cs<\/strong><\/p>\n\n\n\n<p>Then paste these codes :<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-csharp\">    public class CurrencyActivity : Activity\n    {\n        EditText edt;\n        Button currencyButton;\n\n        protected override void OnCreate(Bundle savedInstanceState)\n        {\n            \n            base.OnCreate(savedInstanceState);\n            SetContentView(Resource.Layout.Currency);\n            edt = FindViewById&lt;EditText&gt;(Resource.Id.msgText);\n            currencyButton = FindViewById&lt;Button&gt;(Resource.Id.currencyBtn);\n         \n            currencyButton.Click += CurrencyButton_Click;\n            \n            };\n        }\n     \n        private void CurrencyButton_Click(object sender, EventArgs e)\n        {\n            CurrencyConversion(1, &quot;TRY&quot;, &quot;USD&quot;);\n        }\n        \n        private const string urlPattern = &quot;http:\/\/rate-exchange-1.appspot.com\/currency?from={0}&amp;to={1}&quot;;\n        \n        public string CurrencyConversion(decimal amount, string fromCurrency, string toCurrency)\n        {\n            string url = string.Format(urlPattern, fromCurrency, toCurrency);\n            string Output = edt.Text;\n            using (var wc = new WebClient())\n            {\n                var json = wc.DownloadString(url);\n\n                Newtonsoft.Json.Linq.JToken token = Newtonsoft.Json.Linq.JObject.Parse(json);\n                decimal exchangeRate = (decimal)token.SelectToken(&quot;rate&quot;);\n\n                Output = (amount * exchangeRate).ToString();\n                edt.Text = &quot;1 TRY = &quot; + Output + &quot; USD&quot;;\n                return edt.Text;\n            }\n        }\n        }\n    }<\/code><\/pre>\n\n\n\n<p>Here I converted 1 Turkish Lira to Dollars. You can write the amount and currencies you want in the parameters of the method. The format is as follows : (urlPattern, fromCurrency, toCurrency).<\/p>\n\n\n\n<p>If you want, you can send the result to another page using <strong>Bundle<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Methods<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>WebClient.DownloadString()<\/strong> : Downloads the requested resource as a&nbsp;<a href=\"https:\/\/docs.microsoft.com\/en-US\/dotnet\/api\/system.string?view=netcore-3.1\" target=\"_blank\" rel=\"noreferrer noopener\">String<\/a>. The resource to download may be specified as either&nbsp;<a href=\"https:\/\/docs.microsoft.com\/en-US\/dotnet\/api\/system.string?view=netcore-3.1\" target=\"_blank\" rel=\"noreferrer noopener\">String<\/a>&nbsp;containing the URI or a&nbsp;<a href=\"https:\/\/docs.microsoft.com\/en-US\/dotnet\/api\/system.uri?view=netcore-3.1\" target=\"_blank\" rel=\"noreferrer noopener\">Uri<\/a>.<\/li><li><strong>String.Format()<\/strong> : Converts the value of objects to strings based on the formats specified and inserts them into another string.<\/li><li><strong>Object.Parse(String)<\/strong> : Load a&nbsp;<a href=\"https:\/\/www.newtonsoft.com\/json\/help\/html\/T_Newtonsoft_Json_Linq_JObject.htm\" target=\"_blank\" rel=\"noreferrer noopener\">JObject<\/a>&nbsp;from a string that contains JSON.<\/li><li><strong>Object.ToString()<\/strong> : Returns a string that represents the current object. <a href=\"https:\/\/docs.microsoft.com\/en-us\/dotnet\/api\/system.object.tostring?view=netcore-3.1\" target=\"_blank\" rel=\"noreferrer noopener\">Object.ToString<\/a>&nbsp;is the major formatting method in the .NET Framework. It converts an object to its string representation so that it is suitable for display.&nbsp;<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>We created Layout and Activity and connected them together. Our currency application is now ready. Run the app and see how it looks.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/serkanseker.com\/wp-content\/uploads\/2020\/08\/Currency-Converter-in-Xamarin.Android.gif\" alt=\"Currency Converter in Xamarin.Android\" class=\"wp-image-547\" width=\"264\" height=\"540\"\/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Related Posts<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/serkanseker.com\/xamarin-forms-covid-19-app\/\" target=\"_blank\" rel=\"noreferrer noopener\">Xamarin.Forms Covid-19 App<\/a><\/li><li><a href=\"https:\/\/serkanseker.com\/xamarin-using-weather-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">Using Weather API in Xamarin<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this post, I will show you a simple application of currency converter in Xamarin.Android. It will be an application that will write the amount of foreign currency to be converted and in which currencies it is wanted to translate and return a result.<\/p>\n","protected":false},"author":1,"featured_media":197,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[21,37],"tags":[38,4,15],"class_list":["post-544","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-xamarin","category-xamarin-android","tag-webclient","tag-xamarin","tag-xamarin-android"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Xamarin.Android Currency Converter - Serkan Seker TR<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Xamarin.Android Currency Converter - Serkan Seker TR\" \/>\n<meta property=\"og:description\" content=\"In this post, I will show you a simple application of currency converter in Xamarin.Android. It will be an application that will write the amount of foreign currency to be converted and in which currencies it is wanted to translate and return a result.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\" \/>\n<meta property=\"og:site_name\" content=\"Serkan Seker TR\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-26T18:19:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-09T18:31:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1\" \/>\n\t<meta property=\"og:image:height\" content=\"1\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"serkanadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"serkanadmin\" \/>\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:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\"},\"author\":{\"name\":\"serkanadmin\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"headline\":\"Xamarin.Android Currency Converter\",\"datePublished\":\"2020-08-26T18:19:21+00:00\",\"dateModified\":\"2020-12-09T18:31:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\"},\"wordCount\":343,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg\",\"keywords\":[\"webclient\",\"xamarin\",\"xamarin.android\"],\"articleSection\":[\"Xamarin\",\"Xamarin.Android\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\",\"url\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\",\"name\":\"Xamarin.Android Currency Converter - Serkan Seker TR\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg\",\"datePublished\":\"2020-08-26T18:19:21+00:00\",\"dateModified\":\"2020-12-09T18:31:08+00:00\",\"author\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"breadcrumb\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage\",\"url\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg\",\"contentUrl\":\"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/serkanseker.com\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Xamarin.Android Currency Converter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\",\"url\":\"https:\/\/serkanseker.com\/tr\/\",\"name\":\"Serkan Seker TR\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/serkanseker.com\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\",\"name\":\"serkanadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"caption\":\"serkanadmin\"},\"sameAs\":[\"https:\/\/serkanseker.com\"],\"url\":\"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Xamarin.Android Currency Converter - Serkan Seker TR","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Xamarin.Android Currency Converter - Serkan Seker TR","og_description":"In this post, I will show you a simple application of currency converter in Xamarin.Android. It will be an application that will write the amount of foreign currency to be converted and in which currencies it is wanted to translate and return a result.","og_url":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/","og_site_name":"Serkan Seker TR","article_published_time":"2020-08-26T18:19:21+00:00","article_modified_time":"2020-12-09T18:31:08+00:00","og_image":[{"url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg","width":1,"height":1,"type":"image\/jpeg"}],"author":"serkanadmin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"serkanadmin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#article","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/"},"author":{"name":"serkanadmin","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"headline":"Xamarin.Android Currency Converter","datePublished":"2020-08-26T18:19:21+00:00","dateModified":"2020-12-09T18:31:08+00:00","mainEntityOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/"},"wordCount":343,"commentCount":0,"image":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg","keywords":["webclient","xamarin","xamarin.android"],"articleSection":["Xamarin","Xamarin.Android"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/","url":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/","name":"Xamarin.Android Currency Converter - Serkan Seker TR","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage"},"image":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage"},"thumbnailUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg","datePublished":"2020-08-26T18:19:21+00:00","dateModified":"2020-12-09T18:31:08+00:00","author":{"@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"breadcrumb":{"@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#primaryimage","url":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg","contentUrl":"https:\/\/serkanseker.com\/tr\/wp-content\/uploads\/2020\/12\/Currency-Converter-in-Xamarin.Android.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/serkanseker.com\/tr\/xamarin-android-currency-converter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/serkanseker.com\/tr\/"},{"@type":"ListItem","position":2,"name":"Xamarin.Android Currency Converter"}]},{"@type":"WebSite","@id":"https:\/\/serkanseker.com\/tr\/#website","url":"https:\/\/serkanseker.com\/tr\/","name":"Serkan Seker TR","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/serkanseker.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5","name":"serkanadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","caption":"serkanadmin"},"sameAs":["https:\/\/serkanseker.com"],"url":"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/544","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/comments?post=544"}],"version-history":[{"count":0,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/544\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media\/197"}],"wp:attachment":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media?parent=544"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/categories?post=544"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/tags?post=544"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}