{"id":54342,"date":"2017-08-11T14:57:52","date_gmt":"2017-08-11T12:57:52","guid":{"rendered":"http:\/\/elwinlee.com\/blog\/?p=54342"},"modified":"2017-08-11T16:29:35","modified_gmt":"2017-08-11T14:29:35","slug":"parse-get-data-as-multidimensional-list-unity","status":"publish","type":"post","link":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/","title":{"rendered":"[How] Parse.com Get Data as Multidimensional List in Unity3D C#"},"content":{"rendered":"<p>I recently found that you&#8217;re able to save multidimensional data to Parse. Saving the data wasn&#8217;t a problem though, but getting it back from a ParseObject took me a while before I finally got it working.<!--more--> You have to cast it as an IList first with Get&lt;IList&lt;object&gt;&gt;, and then cycle through each IList item and casting those as an another IList. Then make a temporary List where you add the items from the 2nd IList before adding it to you final multidimensional list.<\/p>\n<pre class=\"lang:csharp\">var iList = ParseObjectClass.Get&lt;IList&lt;object&gt;&gt;(\"dataName\");  \/\/ Cast as Object IList\r\n\r\nList&lt;List&lt;string&gt;&gt; multiList = new List&lt;List&lt;string&gt;&gt;();  \/\/ Your final output.\r\n\r\n\r\n\r\nforeach( var item in iList ){    \r\n\r\n\tvar itemList = item as IList&lt;object&gt;;  \/\/ Cast item as another IList.\r\n\r\n\tList&lt;string&gt; tempList = new List&lt;string&gt;();  \/\/ Temp list.   \r\n\r\n\t\r\n\r\n\tforeach( var innerItem in tempList ){        \r\n\r\n\t\ttempList.Add(innerItem.ToString());    \/\/ Add to temp list.\r\n\r\n\t}    \r\n\r\n\tmultiList.Add(tempList );  \/\/ Add to final output.\r\n\r\n}\r\n\r\n\r\n\r\n\/\/ Print all items.\r\n\r\nfor( int i=0; i&amp;lt;multiList.Count; i++ ){    \r\n\r\n\tfor( int j=0; j&amp;lt;multiList[i].Count; j++ ){        \r\n\r\n\t\tDebug.Log(multiList[i][j]);    \r\n\r\n\t}\r\n\r\n};<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>I recently found that you&#8217;re able to save multidimensional data to Parse. Saving the data wasn&#8217;t a problem though, but getting it back from a ParseObject took me a while before I finally got it working.<\/p>\n","protected":false},"author":1,"featured_media":54381,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rs_blank_template":"","rs_page_bg_color":"","slide_template_v7":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1079,255],"tags":[2523,2524,749,2525,2433,2526,750,2527,1038,2528,1312,2529,1513,1523,1563,2009,2010,2519,2520,2521,2522],"class_list":["post-54342","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to-fix-stuff","category-technology","tag-parse-com","tag-get","tag-code","tag-multidimensional","tag-coding","tag-multi","tag-programming","tag-multidimen","tag-data","tag-ilist","tag-object","tag-parseobject","tag-list","tag-array","tag-how","tag-unity3d","tag-unity","tag-unity-3d","tag-c","tag-csharp","tag-parse"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"I recently found that you&#039;re able to save multidimensional data to Parse. Saving the data wasn&#039;t a problem though, but getting it back from a ParseObject took me a while before I finally got it working.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Elwin Lee\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Elwin Lee&#039;s Blog | Design, Technology &amp; Food!\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Parse Get Data as Multi-List in C# | Elwin Lee&#039;s Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I recently found that you&#039;re able to save multidimensional data to Parse. Saving the data wasn&#039;t a problem though, but getting it back from a ParseObject took me a while before I finally got it working.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2017-08-11T12:57:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-08-11T14:29:35+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Parse Get Data as Multi-List in C# | Elwin Lee&#039;s Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I recently found that you&#039;re able to save multidimensional data to Parse. Saving the data wasn&#039;t a problem though, but getting it back from a ParseObject took me a while before I finally got it working.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#article\",\"name\":\"Parse Get Data as Multi-List in C# | Elwin Lee's Blog\",\"headline\":\"[How] Parse.com Get Data as Multidimensional List in Unity3D C#\",\"author\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/08\\\/Parse_Logo.png\",\"width\":1200,\"height\":500},\"datePublished\":\"2017-08-11T14:57:52+02:00\",\"dateModified\":\"2017-08-11T16:29:35+02:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#webpage\"},\"articleSection\":\"How to fix stuff, Technology, parse.com, get, Code, multidimensional, Coding, multi, Programming, multidimen, data, ilist, object, parseobject, list, array, how, unity3d, unity, unity 3d, c#, csharp, parse\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/category\\\/how-to-fix-stuff\\\/#listItem\",\"name\":\"How to fix stuff\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/category\\\/how-to-fix-stuff\\\/#listItem\",\"position\":2,\"name\":\"How to fix stuff\",\"item\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/category\\\/how-to-fix-stuff\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#listItem\",\"name\":\"[How] Parse.com Get Data as Multidimensional List in Unity3D C#\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#listItem\",\"position\":3,\"name\":\"[How] Parse.com Get Data as Multidimensional List in Unity3D C#\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/category\\\/how-to-fix-stuff\\\/#listItem\",\"name\":\"How to fix stuff\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/#organization\",\"name\":\"Elwin Lee's Blog\",\"description\":\"Design, Technology & Food!\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"Elwin Lee\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/edf9391c53506d1261906c54cfca9e7a3b39f0e86f12164205875fa57004efef?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Elwin Lee\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#webpage\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/\",\"name\":\"Parse Get Data as Multi-List in C# | Elwin Lee's Blog\",\"description\":\"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/08\\\/Parse_Logo.png\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#mainImage\",\"width\":1200,\"height\":500},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/parse-get-data-as-multidimensional-list-unity\\\/#mainImage\"},\"datePublished\":\"2017-08-11T14:57:52+02:00\",\"dateModified\":\"2017-08-11T16:29:35+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/\",\"name\":\"Elwin Lee's Blog\",\"description\":\"Design, Technology & Food!\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.elwinlee.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Parse Get Data as Multi-List in C# | Elwin Lee's Blog","description":"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working.","canonical_url":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#article","name":"Parse Get Data as Multi-List in C# | Elwin Lee's Blog","headline":"[How] Parse.com Get Data as Multidimensional List in Unity3D C#","author":{"@id":"https:\/\/www.elwinlee.com\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.elwinlee.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.elwinlee.com\/blog\/wp-content\/uploads\/2017\/08\/Parse_Logo.png","width":1200,"height":500},"datePublished":"2017-08-11T14:57:52+02:00","dateModified":"2017-08-11T16:29:35+02:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#webpage"},"isPartOf":{"@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#webpage"},"articleSection":"How to fix stuff, Technology, parse.com, get, Code, multidimensional, Coding, multi, Programming, multidimen, data, ilist, object, parseobject, list, array, how, unity3d, unity, unity 3d, c#, csharp, parse"},{"@type":"BreadcrumbList","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.elwinlee.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/#listItem","name":"How to fix stuff"}},{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/#listItem","position":2,"name":"How to fix stuff","item":"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#listItem","name":"[How] Parse.com Get Data as Multidimensional List in Unity3D C#"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#listItem","position":3,"name":"[How] Parse.com Get Data as Multidimensional List in Unity3D C#","previousItem":{"@type":"ListItem","@id":"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/#listItem","name":"How to fix stuff"}}]},{"@type":"Organization","@id":"https:\/\/www.elwinlee.com\/blog\/#organization","name":"Elwin Lee's Blog","description":"Design, Technology & Food!","url":"https:\/\/www.elwinlee.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.elwinlee.com\/blog\/author\/admin\/#author","url":"https:\/\/www.elwinlee.com\/blog\/author\/admin\/","name":"Elwin Lee","image":{"@type":"ImageObject","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/edf9391c53506d1261906c54cfca9e7a3b39f0e86f12164205875fa57004efef?s=96&d=mm&r=g","width":96,"height":96,"caption":"Elwin Lee"}},{"@type":"WebPage","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#webpage","url":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/","name":"Parse Get Data as Multi-List in C# | Elwin Lee's Blog","description":"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.elwinlee.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#breadcrumblist"},"author":{"@id":"https:\/\/www.elwinlee.com\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.elwinlee.com\/blog\/author\/admin\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.elwinlee.com\/blog\/wp-content\/uploads\/2017\/08\/Parse_Logo.png","@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#mainImage","width":1200,"height":500},"primaryImageOfPage":{"@id":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/#mainImage"},"datePublished":"2017-08-11T14:57:52+02:00","dateModified":"2017-08-11T16:29:35+02:00"},{"@type":"WebSite","@id":"https:\/\/www.elwinlee.com\/blog\/#website","url":"https:\/\/www.elwinlee.com\/blog\/","name":"Elwin Lee's Blog","description":"Design, Technology & Food!","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.elwinlee.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Elwin Lee's Blog | Design, Technology &amp; Food!","og:type":"article","og:title":"Parse Get Data as Multi-List in C# | Elwin Lee's Blog","og:description":"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working.","og:url":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/","article:published_time":"2017-08-11T12:57:52+00:00","article:modified_time":"2017-08-11T14:29:35+00:00","twitter:card":"summary","twitter:title":"Parse Get Data as Multi-List in C# | Elwin Lee's Blog","twitter:description":"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working."},"aioseo_meta_data":{"post_id":"54342","title":"Parse Get Data as Multi-List in C# | #site_title","description":"I recently found that you're able to save multidimensional data to Parse. Saving the data wasn't a problem though, but getting it back from a ParseObject took me a while before I finally got it working.","keywords":[{"label":"unity","value":"unity"},{"label":"unity3d","value":"unity3d"},{"label":"unity 3d","value":"unity 3d"},{"label":"c#","value":"c#"},{"label":"csharp","value":"csharp"},{"label":"parse","value":"parse"},{"label":"parse.com","value":"parse.com"},{"label":"get","value":"get"},{"label":"data","value":"data"},{"label":"multidimensional","value":"multidimensional"},{"label":"multi","value":"multi"},{"label":"multidimen","value":"multidimen"},{"label":"array","value":"array"},{"label":"list","value":"list"},{"label":"object","value":"object"},{"label":"ilist","value":"ilist"},{"label":"programming","value":"programming"},{"label":"coding","value":"coding"},{"label":"code","value":"code"},{"label":"how","value":"how"},{"label":"parseobject","value":"parseobject"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-08 01:24:04","updated":"2025-12-12 01:55:25","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.elwinlee.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/\" title=\"How to fix stuff\">How to fix stuff<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t[How] Parse.com Get Data as Multidimensional List in Unity3D C#\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.elwinlee.com\/blog"},{"label":"How to fix stuff","link":"https:\/\/www.elwinlee.com\/blog\/category\/how-to-fix-stuff\/"},{"label":"[How] Parse.com Get Data as Multidimensional List in Unity3D C#","link":"https:\/\/www.elwinlee.com\/blog\/parse-get-data-as-multidimensional-list-unity\/"}],"jetpack_featured_media_url":"https:\/\/www.elwinlee.com\/blog\/wp-content\/uploads\/2017\/08\/Parse_Logo.png","jetpack_shortlink":"https:\/\/wp.me\/p1mtRf-e8u","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/posts\/54342","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/comments?post=54342"}],"version-history":[{"count":41,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/posts\/54342\/revisions"}],"predecessor-version":[{"id":54388,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/posts\/54342\/revisions\/54388"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/media\/54381"}],"wp:attachment":[{"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/media?parent=54342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/categories?post=54342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.elwinlee.com\/blog\/wp-json\/wp\/v2\/tags?post=54342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}