{"id":83,"date":"2015-04-03T23:15:36","date_gmt":"2015-04-03T14:15:36","guid":{"rendered":"http:\/\/blog.homirun.pw\/?p=83"},"modified":"2015-04-03T23:15:36","modified_gmt":"2015-04-03T14:15:36","slug":"coretweet%e3%82%92visualbasic%e3%81%a7%e4%bd%bf%e3%81%a3%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82","status":"publish","type":"post","link":"https:\/\/blog.homi.run\/?p=83","title":{"rendered":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002"},"content":{"rendered":"<p>Twitter\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3092\u4f5c\u308b\u3068\u304d\u306b\u4f7f\u3048\u308bCoreTweet\u3068\u3044\u3046.NET\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092VB\u3067\u4f7f\u3063\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<p>\u3053\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u3001\u30c4\u30a4\u30fc\u30c8\u306f\u3082\u3061\u308d\u3093\u30b9\u30c8\u30ea\u30fc\u30df\u30f3\u30b0\u3082\u3067\u304d\u308b\u3068\u3044\u3046\u3059\u3050\u308c\u3082\u306e\u3067\u3059\u3002\u3053\u308c\u306fdll\u30d5\u30a1\u30a4\u30eb\u306a\u306e\u3067.NET\u3067\u4f7f\u3048\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u306a\u306e\u3067\u3059\u304c\u3069\u306e\u30b5\u30a4\u30c8\u3092\u898b\u3066\u3082C#\u3067\u3057\u304b\u4f7f\u3063\u3066\u304a\u3089\u305a\u3001VB\u3067\u4f7f\u3063\u3066\u3044\u308b\u3068\u3044\u3046\u8a18\u4e8b\u304c\u306a\u304b\u3063\u305f\u306e\u3067\u4eca\u56de\u8a18\u4e8b\u306b\u3059\u308b\u3053\u3068\u306b\u3057\u307e\u3057\u305f\u3002<\/p>\n<ul>\n<li>\n<h1>OAuth\u8a8d\u8a3c<\/h1>\n<\/li>\n<\/ul>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\n        Dim s = OAuth.Authorize(&quot;{consumer_key}&quot;, &quot;{consumer_secret}&quot;)\n        System.Diagnostics.Process.Start(s.AuthorizeUri.AbsoluteUri)\n        Console.WriteLine(&quot;access : {0}&quot; &amp; vbCrLf, s.AuthorizeUri)\n        Console.WriteLine(&quot;PINCODE please...&quot;)\n\n        Dim pin As String = Console.ReadLine()\n        Dim tokens As Tokens\n\n        tokens = OAuth.GetTokens(s, pin)\n\n<\/pre>\n<ul>\n<li>\n<h1>\u30c4\u30a4\u30fc\u30c8<\/h1>\n<\/li>\n<\/ul>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\n\ntokens.Statuses.Update(New With {.status = &quot;\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9&quot;})\n\n<\/pre>\n<ul>\n<li>\n<h1>TL\u53d6\u5f97(UserStream)<\/h1>\n<\/li>\n<\/ul>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\n\n\u00a0 Dim stream = tokens.Streaming.StartStream _\n                          (CoreTweet.Streaming.StreamingType.User, _\n                          New StreamingParameters(Function(replies) &quot;all&quot;))\n\n\u00a0\u00a0 For Each message In stream\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 If TypeOf message Is StatusMessage Then\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Dim status = TryCast(message, StatusMessage).Status\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Console.WriteLine(String.Format(&quot;{0}:&quot; &amp; vbCrLf &amp; &quot;{1}&quot;, _\n                         status.User.ScreenName, status.Text) &amp; vbCrLf)\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ElseIf TypeOf message Is EventMessage Then\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Dim ev = TryCast(message, EventMessage)\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Console.WriteLine(String.Format(&quot;{0}:&quot; &amp; vbCrLf &amp; &quot;{1}-&gt;{2}&quot;,_\n                          ev.Event, ev.Source.ScreenName, ev.Target.ScreenName) &amp; vbCrLf)\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 End If\n\u00a0\u00a0 Next\n\n<\/pre>\n<p>C#\u306e\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u898b\u3066\u81ea\u5206\u3067\u5909\u63db\u3057\u3066\u3044\u3063\u305f\u306e\u3067\u306a\u3093\u304b\u6c5a\u3044\u3067\u3059\u306d\uff57<\/p>\n<p>\u30e9\u30a4\u30d6\u30e9\u30ea\u7279\u6709\u306e\u578b\u306a\u3069\u306b\u3064\u3044\u3066\u306f<a href=\"https:\/\/github.com\/CoreTweet\/CoreTweet\/wiki\">CoreTweet\u306ewiki<\/a>\u3092\u3069\u3046\u305e<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Twitter\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3092\u4f5c\u308b\u3068\u304d\u306b\u4f7f\u3048\u308bCoreTweet\u3068\u3044\u3046.NET\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092VB\u3067\u4f7f\u3063\u3066\u307f\u307e\u3057\u305f\u3002 \u3053\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u3001\u30c4\u30a4\u30fc\u30c8\u306f\u3082\u3061\u308d\u3093\u30b9\u30c8\u30ea\u30fc\u30df\u30f3\u30b0\u3082\u3067\u304d\u308b\u3068\u3044\u3046\u3059\u3050\u308c\u3082\u306e\u3067\u3059\u3002\u3053\u308c\u306fdll\u30d5\u30a1\u30a4\u30eb\u306a\u306e\u3067 &hellip; <a href=\"https:\/\/blog.homi.run\/?p=83\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002&#8221;\u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,6],"tags":[],"class_list":["post-83","post","type-post","status-publish","format-standard","hentry","category-visualbasic","category-6"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"homirun\"\/>\n\t<meta name=\"google-site-verification\" content=\"UA-127760360-1\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/blog.homi.run\/?p=83\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"homirun&#039;s Blog |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun&#039;s Blog\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/blog.homi.run\/?p=83\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-04-03T14:15:36+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-04-03T14:15:36+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun&#039;s Blog\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#article\",\"name\":\"CoreTweet\\u3092VisualBasic\\u3067\\u4f7f\\u3063\\u3066\\u307f\\u305f\\u3002 | homirun's Blog\",\"headline\":\"CoreTweet\\u3092VisualBasic\\u3067\\u4f7f\\u3063\\u3066\\u307f\\u305f\\u3002\",\"author\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/#organization\"},\"datePublished\":\"2015-04-03T23:15:36+09:00\",\"dateModified\":\"2015-04-03T23:15:36+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#webpage\"},\"articleSection\":\"VisualBasic, \\u4f5c\\u6210\\u7269\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run#listItem\",\"position\":1,\"name\":\"\\u30db\\u30fc\\u30e0\",\"item\":\"https:\\\/\\\/blog.homi.run\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?cat=4#listItem\",\"name\":\"VisualBasic\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?cat=4#listItem\",\"position\":2,\"name\":\"VisualBasic\",\"item\":\"https:\\\/\\\/blog.homi.run\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#listItem\",\"name\":\"CoreTweet\\u3092VisualBasic\\u3067\\u4f7f\\u3063\\u3066\\u307f\\u305f\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run#listItem\",\"name\":\"\\u30db\\u30fc\\u30e0\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#listItem\",\"position\":3,\"name\":\"CoreTweet\\u3092VisualBasic\\u3067\\u4f7f\\u3063\\u3066\\u307f\\u305f\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?cat=4#listItem\",\"name\":\"VisualBasic\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/#organization\",\"name\":\"homirun's Blog\",\"url\":\"https:\\\/\\\/blog.homi.run\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?author=1#author\",\"url\":\"https:\\\/\\\/blog.homi.run\\\/?author=1\",\"name\":\"homirun\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/58c7541009a568cb0f30d16609774e1b7097d0b244bbb06d4ada96d1bc8f916c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"homirun\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#webpage\",\"url\":\"https:\\\/\\\/blog.homi.run\\\/?p=83\",\"name\":\"CoreTweet\\u3092VisualBasic\\u3067\\u4f7f\\u3063\\u3066\\u307f\\u305f\\u3002 | homirun's Blog\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?p=83#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/?author=1#author\"},\"datePublished\":\"2015-04-03T23:15:36+09:00\",\"dateModified\":\"2015-04-03T23:15:36+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.homi.run\\\/#website\",\"url\":\"https:\\\/\\\/blog.homi.run\\\/\",\"name\":\"homirun's Blog\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.homi.run\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun's Blog","description":"","canonical_url":"https:\/\/blog.homi.run\/?p=83","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"UA-127760360-1","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.homi.run\/?p=83#article","name":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun's Blog","headline":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002","author":{"@id":"https:\/\/blog.homi.run\/?author=1#author"},"publisher":{"@id":"https:\/\/blog.homi.run\/#organization"},"datePublished":"2015-04-03T23:15:36+09:00","dateModified":"2015-04-03T23:15:36+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/blog.homi.run\/?p=83#webpage"},"isPartOf":{"@id":"https:\/\/blog.homi.run\/?p=83#webpage"},"articleSection":"VisualBasic, \u4f5c\u6210\u7269"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.homi.run\/?p=83#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/blog.homi.run#listItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/blog.homi.run","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.homi.run\/?cat=4#listItem","name":"VisualBasic"}},{"@type":"ListItem","@id":"https:\/\/blog.homi.run\/?cat=4#listItem","position":2,"name":"VisualBasic","item":"https:\/\/blog.homi.run\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.homi.run\/?p=83#listItem","name":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/blog.homi.run#listItem","name":"\u30db\u30fc\u30e0"}},{"@type":"ListItem","@id":"https:\/\/blog.homi.run\/?p=83#listItem","position":3,"name":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/blog.homi.run\/?cat=4#listItem","name":"VisualBasic"}}]},{"@type":"Organization","@id":"https:\/\/blog.homi.run\/#organization","name":"homirun's Blog","url":"https:\/\/blog.homi.run\/"},{"@type":"Person","@id":"https:\/\/blog.homi.run\/?author=1#author","url":"https:\/\/blog.homi.run\/?author=1","name":"homirun","image":{"@type":"ImageObject","@id":"https:\/\/blog.homi.run\/?p=83#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/58c7541009a568cb0f30d16609774e1b7097d0b244bbb06d4ada96d1bc8f916c?s=96&d=mm&r=g","width":96,"height":96,"caption":"homirun"}},{"@type":"WebPage","@id":"https:\/\/blog.homi.run\/?p=83#webpage","url":"https:\/\/blog.homi.run\/?p=83","name":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun's Blog","inLanguage":"ja","isPartOf":{"@id":"https:\/\/blog.homi.run\/#website"},"breadcrumb":{"@id":"https:\/\/blog.homi.run\/?p=83#breadcrumblist"},"author":{"@id":"https:\/\/blog.homi.run\/?author=1#author"},"creator":{"@id":"https:\/\/blog.homi.run\/?author=1#author"},"datePublished":"2015-04-03T23:15:36+09:00","dateModified":"2015-04-03T23:15:36+09:00"},{"@type":"WebSite","@id":"https:\/\/blog.homi.run\/#website","url":"https:\/\/blog.homi.run\/","name":"homirun's Blog","inLanguage":"ja","publisher":{"@id":"https:\/\/blog.homi.run\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"homirun's Blog |","og:type":"article","og:title":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun's Blog","og:url":"https:\/\/blog.homi.run\/?p=83","article:published_time":"2015-04-03T14:15:36+00:00","article:modified_time":"2015-04-03T14:15:36+00:00","twitter:card":"summary","twitter:title":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002 | homirun's Blog"},"aioseo_meta_data":{"post_id":"83","title":null,"description":null,"keywords":null,"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-01 19:02:00","updated":"2026-01-31 11:16:18","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/blog.homi.run\" title=\"\u30db\u30fc\u30e0\">\u30db\u30fc\u30e0<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/blog.homi.run\/?cat=4\" title=\"VisualBasic\">VisualBasic<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u30db\u30fc\u30e0","link":"https:\/\/blog.homi.run"},{"label":"VisualBasic","link":"https:\/\/blog.homi.run\/?cat=4"},{"label":"CoreTweet\u3092VisualBasic\u3067\u4f7f\u3063\u3066\u307f\u305f\u3002","link":"https:\/\/blog.homi.run\/?p=83"}],"_links":{"self":[{"href":"https:\/\/blog.homi.run\/index.php?rest_route=\/wp\/v2\/posts\/83","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.homi.run\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.homi.run\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.homi.run\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.homi.run\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=83"}],"version-history":[{"count":0,"href":"https:\/\/blog.homi.run\/index.php?rest_route=\/wp\/v2\/posts\/83\/revisions"}],"wp:attachment":[{"href":"https:\/\/blog.homi.run\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=83"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.homi.run\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=83"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.homi.run\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=83"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}