{"id":84974,"date":"2024-01-29T09:16:36","date_gmt":"2024-01-29T09:16:36","guid":{"rendered":"https:\/\/www.baeldung.com\/convert-long-to-date-in-java"},"modified":"2024-01-29T09:16:36","modified_gmt":"2024-01-29T09:16:36","slug":"convert-long-to-date-in-java","status":"publish","type":"post","link":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/2024\/01\/29\/convert-long-to-date-in-java\/","title":{"rendered":"Convert Long to Date in Java"},"content":{"rendered":"<p><img src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\" style=\"float: left; margin-right: 5px;\" decoding=\"async\" srcset=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg 952w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2-300x157.jpg 300w, https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2-768x402.jpg 768w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><\/p>\n<h2 id=\"bd-overview\" data-id=\"overview\">1. Overview<\/h2>\n<div class=\"bd-anchor\" id=\"overview\"><\/div>\n<p>When working with dates in Java, we often see date\/time values expressed as <em>long<\/em> values that denote the number of days, seconds, or milliseconds since the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-localdate-epoch#epoch-vs-localdate\">epoch<\/a>, January 1, 1970, 00:00:00 GMT.<\/p>\n<p>In this short tutorial, we&#8217;ll explore different ways of converting a <em>long<\/em> value to a date in Java. First, we&#8217;ll explain how to do this using core JDK classes. Then, we&#8217;ll showcase how to achieve the same objective using the third-party Joda-Time library.<\/p>\n<h2 id=\"bd-using-the-java-8-date-time-api\" data-id=\"using-the-java-8-date-time-api\">2. Using the Java 8+ Date-Time API<\/h2>\n<div class=\"bd-anchor\" id=\"using-the-java-8-date-time-api\"><\/div>\n<p>Java 8 is often praised for the new Date-Time API feature it brought to the Java landscape. This API was introduced mainly to cover the drawbacks of the old date API. So, let\u2019s take a close look at what this API provides to answer our central question.<\/p>\n<h3 id=\"bd-1-using-the-instant-class\" data-id=\"1-using-the-instant-class\">2.1. Using the <em>Instant<\/em> Class<\/h3>\n<div class=\"bd-anchor\" id=\"1-using-the-instant-class\"><\/div>\n<p>The easiest solution would be using the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-instant-vs-localdatetime#1-using-instant\"><em>Instant<\/em><\/a> class introduced in the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-8-date-time-intro\">new Java 8 date-time API<\/a>. <strong>This class describes a single instantaneous point on the timeline<\/strong>.<\/p>\n<p>So, let&#8217;s see it in practice:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenLongValue_whenUsingInstantClass_thenConvert() {\r\n    Instant expectedDate = Instant.parse(&quot;2020-09-08T12:16:40Z&quot;);\r\n    long seconds = 1599567400L;\r\n    Instant date = Instant.ofEpochSecond(seconds);\r\n    assertEquals(expectedDate, date);\r\n}<\/code><\/pre>\n<p>As shown above, we used the <em>ofEpochSecond()<\/em> method to create an object of the <em>Instant<\/em> class. Please bear in mind that we can use the <em>ofEpochMilli()<\/em> method as well to create an <em>Instant<\/em> instance using milliseconds.<\/p>\n<h3 id=\"bd-2-using-the-localdate-class\" data-id=\"2-using-the-localdate-class\">2.2. Using the <em>LocalDate<\/em> Class<\/h3>\n<div class=\"bd-anchor\" id=\"2-using-the-localdate-class\"><\/div>\n<p><a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-creating-localdate-with-values\"><em>LocalDate<\/em><\/a> is another option to consider when converting a <em>long<\/em> value to a date. This class models a classic date, such as 2023-10-17, without the time detail.<\/p>\n<p>Typically, we can use the <em>LocalDate#ofEpochDay<\/em> method to achieve our objective:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenLongValue_whenUsingLocalDateClass_thenConvert() {\r\n    LocalDate expectedDate = LocalDate.of(2023, 10, 17);\r\n    long epochDay = 19647L;\r\n    LocalDate date = LocalDate.ofEpochDay(epochDay);\r\n    assertEquals(expectedDate, date);\r\n}<\/code><\/pre>\n<p>The <em>ofEpochDay()<\/em> method creates an instance of the <em>LocalDate<\/em> class from the given epoch day.<\/p>\n<h2 id=\"bd-using-the-legacy-date-api\" data-id=\"using-the-legacy-date-api\">3. Using the Legacy Date API<\/h2>\n<div class=\"bd-anchor\" id=\"using-the-legacy-date-api\"><\/div>\n<p>Before Java 8, we would usually use the <em>Date<\/em> or <em>Calendar<\/em> classes from the <em>java.util<\/em> package to achieve our objective. So, let\u2019s see how to use these two classes to convert a <em>long<\/em> value to a date.<\/p>\n<h3 id=\"bd-1-using-thedateclass\" data-id=\"1-using-thedateclass\">3.1. Using the\u00a0<em>Date<\/em>\u00a0Class<\/h3>\n<div class=\"bd-anchor\" id=\"1-using-thedateclass\"><\/div>\n<p>The <em>Date<\/em> class denotes a specific instant in time with millisecond precision. As the name indicates, it comes with a host of methods that we can use to manipulate dates. <strong>It offers the easiest way to convert a <em>long<\/em> value to a date as it provides an overloaded constructor that accepts a parameter of <em>long<\/em> type<\/strong>.<\/p>\n<p>So, let&#8217;s see it in action:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenLongValue_whenUsingDateClass_thenConvert() {\r\n    SimpleDateFormat dateFormat = new SimpleDateFormat(&quot;yyyy-MM-dd HH:mm:ss&quot;);\r\n    dateFormat.setTimeZone(TimeZone.getTimeZone(&quot;UTC&quot;));\r\n    Date expectedDate = dateFormat.parse(&quot;2023-10-15 22:00:00&quot;);\r\n    long milliseconds = 1689458400000L;\r\n    Date date = new Date(milliseconds);\r\n    assertEquals(expectedDate, date);\r\n}<\/code><\/pre>\n<p>Please note that the <em>Date <\/em>class is outdated and belongs to the old API. So, it&#8217;s not the best way to go when working with dates.<\/p>\n<h3 id=\"bd-2-using-the-calendar-class\" data-id=\"2-using-the-calendar-class\">3.2. Using the <em>Calendar<\/em> Class<\/h3>\n<div class=\"bd-anchor\" id=\"2-using-the-calendar-class\"><\/div>\n<p>Another solution would be to use the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/java-gregorian-calendar\"><em>Calendar<\/em><\/a> class from the old date API. <strong>This class provides the <em>setTimeInMillis(long value)<\/em> method that we can use to set the time to the given <em>long<\/em> value<\/strong>.<\/p>\n<p>Now, let&#8217;s exemplify the use of this method using another test case:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenLongValue_whenUsingCalendarClass_thenConvert() {\r\n    SimpleDateFormat dateFormat = new SimpleDateFormat(&quot;yyyy-MM-dd HH:mm:ss&quot;);\r\n    dateFormat.setTimeZone(TimeZone.getTimeZone(&quot;UTC&quot;));\r\n    Date expectedDate = dateFormat.parse(&quot;2023-07-15 22:00:00&quot;);\r\n    long milliseconds = 1689458400000L;\r\n    Calendar calendar = Calendar.getInstance();\r\n    calendar.setTimeZone(TimeZone.getTimeZone(&quot;UTC&quot;));\r\n    calendar.setTimeInMillis(milliseconds);\r\n    assertEquals(expectedDate, calendar.getTime());\r\n}<\/code><\/pre>\n<p>Similarly, the specified <em>long<\/em> value denotes the number of milliseconds passed since the epoch.<\/p>\n<h2 id=\"bd-using-joda-time\" data-id=\"using-joda-time\">4. Using Joda-Time<\/h2>\n<div class=\"bd-anchor\" id=\"using-joda-time\"><\/div>\n<p>Lastly, we can use the <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/www.baeldung.com\/joda-time\">Joda-Time library<\/a> to tackle our challenge. First, let&#8217;s add its <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/mvnrepository.com\/artifact\/joda-time\/joda-time\">dependency<\/a> to the <em>pom.xml<\/em> file:<\/p>\n<pre><code class=\"language-xml\">&lt;dependency&gt;\r\n    &lt;groupId&gt;joda-time&lt;\/groupId&gt;\r\n    &lt;artifactId&gt;joda-time&lt;\/artifactId&gt;\r\n    &lt;version&gt;2.12.5&lt;\/version&gt;\r\n&lt;\/dependency&gt;<\/code><\/pre>\n<p>Similarly, Joda-Time provides its version of the <em>LocalDate<\/em> class. So, let&#8217;s see how we can use it to convert a <em>long<\/em> value to a <em>LocalDate<\/em> object:<\/p>\n<pre><code class=\"language-java\">@Test\r\nvoid givenLongValue_whenUsingJodaTimeLocalDateClass_thenConvert() {\r\n    org.joda.time.LocalDate expectedDate = new org.joda.time.LocalDate(2023, 7, 15);\r\n    long milliseconds = 1689458400000L;\r\n    org.joda.time.LocalDate date = new org.joda.time.LocalDate(milliseconds, DateTimeZone.UTC);\r\n    assertEquals(expectedDate, date);\r\n}<\/code><\/pre>\n<p>As illustrated, <em>LocalDate<\/em> offers a direct way to construct a date from a <em>long<\/em> value.<\/p>\n<h2 id=\"bd-conclusion\" data-id=\"conclusion\">5. Conclusion<\/h2>\n<div class=\"bd-anchor\" id=\"conclusion\"><\/div>\n<p>In this short article, we explained in detail how to convert a <em>long<\/em> value to a date in Java.<\/p>\n<p>First, we&#8217;ve seen how to do the conversion using built-in JDK classes. Then, we illustrated how to accomplish the same goal using the Joda-Time library.<\/p>\n<p>As always, the code used in this article can be found <a href=\"https:\/\/feeds.feedblitz.com\/~\/t\/0\/0\/baeldung\/~https:\/\/github.com\/eugenp\/tutorials\/tree\/master\/core-java-modules\/core-java-date-operations-4\">over on GitHub<\/a>.<\/p>\n<p><Img align=\"left\" border=\"0\" height=\"1\" width=\"1\" alt=\"\" style=\"border:0;float:left;margin:0;padding:0;width:1px!important;height:1px!important;\" hspace=\"0\" src=\"https:\/\/feeds.feedblitz.com\/~\/i\/866317082\/0\/baeldung\"><\/p>\n<div style=\"clear:both;padding-top:0.2em;\"><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/866317082\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2016%2F10%2Fsocial-Java-On-Baeldung-2.jpg\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\" style=\"border:0;margin:0;padding:0;\"><\/a>&#160;<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-long-date-conversion#respond\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>&#160;<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-long-date-conversion\/feed\"><img decoding=\"async\" height=\"20\" style=\"border:0;margin:0;padding:0;\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>&#160;<\/div>\n\n<h2><b>Commercials Cooperation Advertisements:<\/b><\/h2>\r\n<p><br>(1) IT Teacher IT Freelance<br> <\/p>\r\n<a href=https:\/\/itteacheritfreelance.hk\/wordpress><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITTeacherITFreelance-Website.png alt=IT\u96fb\u8166\u88dc\u7fd2 java\u88dc\u7fd2 \u70ba\u5927\u5bb6\u914d\u5c0d\u96fb\u8166\u88dc\u7fd2,IT freelance, \u79c1\u4eba\u8001\u5e2b, PHP\u88dc\u7fd2,CSS\u88dc\u7fd2,XML,Java\u88dc\u7fd2,MySQL\u88dc\u7fd2,graphic design\u88dc\u7fd2,\u4e2d\u5c0f\u5b78ICT\u88dc\u7fd2,\u4e00\u5c0d\u4e00\u79c1\u4eba\u88dc\u7fd2\u548cFreelance\u81ea\u7531\u5de5\u4f5c\u914d\u5c0d\u3002\/><\/a><p><a href=https:\/\/itteacheritfreelance.hk\/wordpress\/index.php\/findteacher>\u7acb\u523b\u8a3b\u518a\u53ca\u5831\u540d\u96fb\u8166\u88dc\u7fd2\u8ab2\u7a0b\u5427! <\/a><br>\r\n\r\n\u7535\u5b50\u8ba1\u7b97\u673a -\u6559\u80b2 -IT \u96fb\u8166\u73ed\u201d ( IT\u96fb\u8166\u88dc\u7fd2 ) \u63d0\u4f9b\u4e00\u500b\u65b9\u4fbf\u7684\u7535\u5b50\u8ba1\u7b97\u673a \u6559\u80b2\u5e73\u53f0, \u70ba\u5927\u5bb6\u914d\u5c0d\u4fe1\u606f\u6280\u672f, \u96fb\u8166 \u8001\u5e2b, IT freelance \u548c programming expert. \u8b93\u5927\u5bb6\u65b9\u4fbf\u5730\u5c31\u80fd\u627e\u5230\u5408\u9069\u7684\u96fb\u8166\u88dc\u7fd2, \u96fb\u8166\u73ed, \u5bb6\u6559, \u79c1\u4eba\u8001\u5e2b.  <br>\r\n\r\nWe are a education and information platform which you can find a IT private tutorial teacher or freelance. <br>\r\n\r\nAlso we provide different information about information technology, Computer, programming, mobile, Android, apple, game, movie, anime, animation\u2026 \r\n<\/p>\n<p><br>(2) ITSec<br> <\/p><a href=https:\/\/itsec.vip><img src=http:\/\/gamefootballmobileanimeiphone.com\/wp-content\/uploads\/2023\/09\/ITSec-Main-Promotion-Image.png alt= https:\/\/itsec.vip\/\r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers.  \r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training.\/><\/a> \r\n<br><br> \r\n<p><a href=https:\/\/itsec.vip>www.ITSec.vip<\/a> <br> <br> \r\n<p><a href=https:\/\/sraa.com.hk>www.Sraa.com.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itsec.hk>www.ITSec.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/penetrationtest.hk>www.Penetrationtest.hk<\/a> <br> <br> \r\n<p><a href=https:\/\/itseceu.uk>www.ITSeceu.uk<\/a> <br> <br> \r\nSecure Your Computers from Cyber Threats and mitigate risks with professional services to defend Hackers. <br><br>\r\nITSec provide IT Security and Compliance Services, including IT Compliance Services, Risk Assessment, IT Audit, Security Assessment and Audit, ISO 27001 Consulting and Certification, GDPR Compliance Services, Privacy Impact Assessment (PIA), Penetration test, Ethical Hacking, Vulnerabilities scan, IT Consulting, Data Privacy Consulting, Data Protection Services, Information Security Consulting, Cyber Security Consulting, Network Security Audit, Security Awareness Training. \r\n<br><br>Contact us right away. <br><br>Email (Prefer using email to contact us): <br>SalesExecutive@ITSec.vip<\/p>","protected":false},"excerpt":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/www.baeldung.com\/wp-content\/uploads\/2016\/10\/social-Java-On-Baeldung-2.jpg\" class=\"webfeedsFeaturedVisual wp-post-image\" alt=\"\"><\/p>\n<p>Learn to convert a long value to a date in Java using the Java 8 Date-Time API, the legacy Date API, and the Joda-Time library.<\/p>\n<div><a title=\"Like on Facebook\" href=\"https:\/\/feeds.feedblitz.com\/_\/28\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/fblike20.png\"><\/a>\u00a0<a title=\"Pin it!\" href=\"https:\/\/feeds.feedblitz.com\/_\/29\/866317082\/baeldung,https%3A%2F%2Fwww.baeldung.com%2Fwp-content%2Fuploads%2F2016%2F10%2Fsocial-Java-On-Baeldung-2.jpg\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/pinterest20.png\"><\/a>\u00a0<a title=\"Tweet This\" href=\"https:\/\/feeds.feedblitz.com\/_\/24\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/twitter20.png\"><\/a>\u00a0<a title=\"Subscribe by email\" href=\"https:\/\/feeds.feedblitz.com\/_\/19\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/email20.png\"><\/a>\u00a0<a title=\"Subscribe by RSS\" href=\"https:\/\/feeds.feedblitz.com\/_\/20\/866317082\/baeldung\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/rss20.png\"><\/a>\u00a0<a rel=\"NOFOLLOW\" title=\"View Comments\" href=\"https:\/\/www.baeldung.com\/java-long-date-conversion#respond\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/comments20.png\"><\/a>\u00a0<a title=\"Follow Comments via RSS\" href=\"https:\/\/www.baeldung.com\/java-long-date-conversion\/feed\"><img decoding=\"async\" height=\"20\" src=\"https:\/\/assets.feedblitz.com\/i\/commentsrss20.png\"><\/a>\u00a0<\/div>\n","protected":false},"author":293,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","footnotes":""},"categories":[22],"tags":[61,122,127,129,124,128,125,132,131,133,126,130,123,66,94,88,97,56,64,65,60,112,40,75,95,104,33,120,22066,105,101,98,115,30,29,41,86,70,69,68,72,71,26,118,108,87,46,55,48,52,54,51,50,83,62,58,57,22065,22067,22068,109,35,59,63,85,79,82,96,80,27,81,114,44,42,43,45,38,39,110,117,100,111,116,73,89,90,92,91,93,84,78,37,102,34,36,77,67,74,99,113,119,28,121,32,47,49,53,103,31,76],"class_list":["post-84974","post","type-post","status-publish","format-standard","hentry","category-mobile","tag-airpods","tag-anime","tag-anime-characters","tag-anime-cosplay","tag-anime-edits","tag-anime-merchandise","tag-anime-movies","tag-anime-news","tag-anime-recommendations","tag-anime-reviews","tag-anime-series","tag-anime-streaming","tag-animes","tag-app-store","tag-app-store-samsung","tag-appgallery","tag-appgallery-oneplus","tag-apple","tag-apple-music","tag-apple-tv","tag-apple-watch","tag-bbc-sport","tag-best-mobile-games","tag-bixby","tag-bixby-xiaomi","tag-champions-league","tag-cyberpunk","tag-cyberpunk-2077","tag-date-conversions","tag-fantasy-football","tag-fifa","tag-football","tag-formula-1","tag-fortnite","tag-free-fire","tag-free-mobile-games","tag-freebuds-pro","tag-galaxy-a52","tag-galaxy-note-20","tag-galaxy-s21","tag-galaxy-watch-4","tag-galaxy-z-fold-3","tag-game","tag-games","tag-golf","tag-harmonyos","tag-how-to-backup-iphone","tag-how-to-factory-reset-iphone","tag-how-to-reset-iphone","tag-how-to-restore-iphone","tag-how-to-unlock-iphone","tag-how-to-unlock-iphone-5","tag-how-to-unlock-iphone-6","tag-huawei","tag-ios","tag-ipad","tag-iphone","tag-java-dates","tag-java-legacy-date-api","tag-joda-time","tag-live-soccer","tag-lol","tag-macbook","tag-macos","tag-mate-40-pro","tag-mi-11-lite","tag-mi-home-security-camera-basic-1080p","tag-mi-home-security-camera-basic-1080p-huawei","tag-mi-smart-band-6","tag-minecraft","tag-miui","tag-mlb-scores","tag-mobile-game-design","tag-mobile-game-development","tag-mobile-game-marketing","tag-mobile-game-monetization","tag-mobile-games","tag-mobile-gaming","tag-nba-scores","tag-nba-standings","tag-nfl","tag-nfl-scores","tag-nhl-scores","tag-one-ui","tag-oneplus","tag-oneplus-9-pro","tag-oneplus-buds-pro","tag-oneplus-nord-ce-5g","tag-oxygenos","tag-p40-pro-plus","tag-poco-x3-pro","tag-pokemon","tag-premier-league","tag-pubg","tag-pubg-mobile","tag-redmi-note-10-pro","tag-samsung","tag-samsung-pay","tag-soccer","tag-sports","tag-steam","tag-steeam","tag-top-10-anime","tag-valorant","tag-when-do-the-iphone-7-come-out","tag-when-does-the-iphone-7-come-out","tag-when-is-the-iphone-7-coming-out","tag-world-cup","tag-xbox-series-x","tag-xiaomi"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/84974","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/users\/293"}],"replies":[{"embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/comments?post=84974"}],"version-history":[{"count":1,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/84974\/revisions"}],"predecessor-version":[{"id":84975,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/posts\/84974\/revisions\/84975"}],"wp:attachment":[{"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/media?parent=84974"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/categories?post=84974"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gamefootballmobileanimeiphone.com\/index.php\/wp-json\/wp\/v2\/tags?post=84974"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}