{"id":22207,"date":"2015-07-01T12:31:00","date_gmt":"2015-07-01T07:01:00","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=22207"},"modified":"2015-07-01T16:50:05","modified_gmt":"2015-07-01T11:20:05","slug":"continuing-with-boto-list-iam-users-having-90-days-older-access-keys","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/","title":{"rendered":"Continuing with Boto: List IAM users having 90 days older Access keys"},"content":{"rendered":"<p>AWS recommends to rotate your IAM user&#8217;s Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice.<\/p>\n<p>Recently, we <a href=\"https:\/\/2thenew.today\/success-stories\/sony-entertainment-television\">came across a use case<\/a> wherein we were supposed to rotate the access keys which were created 90 days ago. For this purpose, we needed all those access keys which were created before 90 days.<\/p>\n<p>We thought to come up with a python script using boto which describes:<\/p>\n<p>1) <strong><span style=\"font-weight: bold; text-align: justify; color: #ff9900;\">Access Key Creation Date:<\/span><\/strong> date on which access keys were created.<br \/>\n2) <strong><span style=\"font-weight: bold; text-align: justify; color: #ff9900;\">Username:<\/span><\/strong> user name associate with that keys.<\/p>\n<p>Note: You can refer our previous blog to understand <a href=\"https:\/\/2thenew.today\/blog\/getting-started-with-boto-python-interface-for-aws\/\"><strong><span style=\"font-weight: bold; text-align: justify; color: #ff9900;\"> How to use boto library? <\/span><\/strong><\/a><\/p>\n<p>[python]<\/p>\n<p>import datetime<br \/>\nimport dateutil<br \/>\nimport boto<br \/>\nfrom dateutil import parser<br \/>\nfrom boto import iam<\/p>\n<p>conn=iam.connect_to_region(&#8216;ap-southeast-1&#8217;)<br \/>\nusers=conn.get_all_users()<br \/>\ntimeLimit=datetime.datetime.now() &#8211; datetime.timedelta(days=90)<\/p>\n<p>print &quot;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&quot;<br \/>\nprint &quot;Access Keys Created Date&quot; + &quot;\\t\\t&quot; + &quot;Username&quot;<br \/>\nprint &quot;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&quot;<\/p>\n<p>for user in users.list_users_response.users:<\/p>\n<p>    accessKeys=conn.get_all_access_keys(user_name=user[&#8216;user_name&#8217;])<\/p>\n<p>    for keysCreatedDate in accessKeys.list_access_keys_response.list_access_keys_result.access_key_metadata:<\/p>\n<p>        if parser.parse(keysCreatedDate[&#8216;create_date&#8217;]).date() &lt;= timeLimit.date():<\/p>\n<p>            print(keysCreatedDate[&#8216;create_date&#8217;]) + &quot;\\t\\t&quot; + user[&#8216;user_name&#8217;]<\/p>\n<p>[\/python]<\/p>\n<p>&nbsp;<\/p>\n<p>You can download this scripts from our github profile <a href=\"https:\/\/github.com\/hiteshBhatia\/aws-boto-scripts\/\">AWS-Boto-Scripts.<\/a><\/p>\n<p>Leave a comment if you have any questions regarding this article.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AWS recommends to rotate your IAM user&#8217;s Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the [&hellip;]<\/p>\n","protected":false},"author":100,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":10,"footnotes":""},"categories":[1174,1],"tags":[1853,1611,1358],"class_list":["post-22207","post","type-post","status-publish","format-standard","hentry","category-aws-2","category-technology","tag-automation","tag-boto","tag-python"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"AWS recommends to rotate your IAM user&#039;s Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vikash Jha\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"AWS recommends to rotate your IAM user&#039;s Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"aws\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"automation\" \/>\n\t\t<meta property=\"article:tag\" content=\"boto\" \/>\n\t\t<meta property=\"article:tag\" content=\"python\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-01T07:01:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-07-01T11:20:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"AWS recommends to rotate your IAM user&#039;s Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\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.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#article\",\"name\":\"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog\",\"headline\":\"Continuing with Boto: List IAM users having 90 days older Access keys\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-07-01T12:31:00+05:30\",\"dateModified\":\"2015-07-01T16:50:05+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#webpage\"},\"articleSection\":\"AWS, Technology, Automation, boto, python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#listItem\",\"name\":\"Continuing with Boto: List IAM users having 90 days older Access keys\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#listItem\",\"position\":3,\"name\":\"Continuing with Boto: List IAM users having 90 days older Access keys\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/\",\"name\":\"Vikash Jha\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vikash Jha\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/\",\"name\":\"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog\",\"description\":\"AWS recommends to rotate your IAM user's Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"datePublished\":\"2015-07-01T12:31:00+05:30\",\"dateModified\":\"2015-07-01T16:50:05+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog","description":"AWS recommends to rotate your IAM user's Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the","canonical_url":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#article","name":"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog","headline":"Continuing with Boto: List IAM users having 90 days older Access keys","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/vikash-jha\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"datePublished":"2015-07-01T12:31:00+05:30","dateModified":"2015-07-01T16:50:05+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#webpage"},"articleSection":"AWS, Technology, Automation, boto, python"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#listItem","name":"Continuing with Boto: List IAM users having 90 days older Access keys"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#listItem","position":3,"name":"Continuing with Boto: List IAM users having 90 days older Access keys","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/vikash-jha\/#author","url":"https:\/\/2thenew.today\/blog\/author\/vikash-jha\/","name":"Vikash Jha","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vikash Jha"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#webpage","url":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/","name":"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog","description":"AWS recommends to rotate your IAM user's Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/vikash-jha\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/vikash-jha\/#author"},"datePublished":"2015-07-01T12:31:00+05:30","dateModified":"2015-07-01T16:50:05+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog","og:description":"AWS recommends to rotate your IAM user's Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the","og:url":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":["aws","technology","automation","boto","python"],"article:published_time":"2015-07-01T07:01:00+00:00","article:modified_time":"2015-07-01T11:20:05+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Continuing with Boto: List IAM users having 90 days older Access keys | TO THE NEW Blog","twitter:description":"AWS recommends to rotate your IAM user's Access keys periodically. Sometime we create access keys for IAM user and keep using it. We forget to rotate the keys after a period of time, which is not considered as a good practice. Recently, we came across a use case wherein we were supposed to rotate the","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"22207","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","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":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","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":"Article","isEnabled":true},"graphs":[]},"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,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:21:03","updated":"2024-02-29 08:31:26","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/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:\/\/2thenew.today\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tContinuing with Boto: List IAM users having 90 days older Access keys\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"Continuing with Boto: List IAM users having 90 days older Access keys","link":"https:\/\/2thenew.today\/blog\/continuing-with-boto-list-iam-users-having-90-days-older-access-keys\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/22207","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=22207"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/22207\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=22207"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=22207"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=22207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}