{"id":897,"date":"2020-12-28T13:22:59","date_gmt":"2020-12-28T13:22:59","guid":{"rendered":"https:\/\/www.developercookies.net\/?p=897"},"modified":"2020-12-30T07:36:41","modified_gmt":"2020-12-30T07:36:41","slug":"push-notification-service-with-nextcloud-talk","status":"publish","type":"post","link":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/","title":{"rendered":"Push-Benachrichtigungs-Service mit Nextcloud Talk"},"content":{"rendered":"<p>Push notifications are special messages that appear on smartphones without opening an app. The service transmits relevant events (e.g., error states of a server) to subscribed users in each case.<\/p>\n<p>Numerous push notification providers exist on the market, such as Pushover. If one does not intend to use these, such as for privacy violation reasons, this requires a separate service. Nextcloud Talk allows to implement a fully independent push notification service.<\/p>\n<p>The following example describes the implementation and sending of a push notification with PHP script and Nextcloud Talk from a server to a smartphone.<\/p>\n<ol>\n<li>The prerequisite is a functioning Nexcloud service with activated Nextcloud Talk app. In addition, it is necessary to install Nextcloud Talk on the smartphone and configure it to the Nextcloud service. This installation and configuration is not part of this article.<\/li>\n<li>installing curl on the system\n<pre class=\"brush:text\">sudo apt install curl<\/pre>\n<\/li>\n<li>Create a user for the automatic service in Nextcloud (e.g. &#8220;robotic&#8221;).<\/li>\n<li>Create an application password under &#8220;User\/Security&#8221;.<\/li>\n<li>Create a Nextloud Talk channel with the user for the automatic service (e.g. robotic) and add users to whom the push messages should be sent.<\/li>\n<li>Open the channel and copy the channel id from the URL (https:\/\/&lt;address_to_nextcloud_service&gt;\/index.php\/call\/<strong>&lt;channel_id&gt;<\/strong>).<\/li>\n<li>&nbsp;And now follows the magic PHP-code part, which has to be copied somewhere on the server.\n<pre class=\"brush:php\">&lt;?php\r\n\tfunction NextcloudTalk_SendMessage($channel_id, $message) {\r\n\t\t$SERVER = \"https:\/\/&lt;address_to_nextcloud_service&gt;\";\r\n\t\t$USER = \"&lt;nextcloud_robotic_user&gt;\";\r\n\t\t$PASS = \"&lt;application_password&gt;\";\r\n\r\n\t\t\/\/ notify hack\r\n\t\t$data = array(\r\n\t\t\t\"token\" =&gt; $channel_id,\r\n\t\t\t\"message\" =&gt; $message,\r\n\t\t\t\"actorDisplayName\" =&gt; \"PYTHON-NOTIFICATION\",\r\n\t\t\t\"actorType\" =&gt; \"\",\r\n\t\t\t\"actorId\" =&gt; \"\",\r\n\t\t\t\"timestamp\" =&gt; 0,\r\n\t\t\t\"messageParameters\" =&gt; array()\r\n\t\t);\r\n\r\n\t\t$payload = json_encode($data);\r\n\r\n\t\t$ch = curl_init($SERVER . '\/ocs\/v2.php\/apps\/spreed\/api\/v1\/chat\/' . $channel_id);\r\n\r\n\t\tcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);\r\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\r\n\t\tcurl_setopt($ch, CURLINFO_HEADER_OUT, true);\r\n\t\tcurl_setopt($ch, CURLOPT_POST, true);\r\n\t\tcurl_setopt($ch, CURLOPT_POSTFIELDS, $payload);\r\n\t\tcurl_setopt($ch, CURLOPT_USERPWD, \"$USER:$PASS\");\r\n\t\tcurl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);\r\n\r\n\t\t\/\/ Set HTTP Header\r\n\t\tcurl_setopt($ch, CURLOPT_HTTPHEADER, array(\r\n\t\t\t'Content-Type: application\/json',\r\n\t\t\t'Content-Length: ' . strlen($payload),\r\n\t\t\t'Accept: application\/json',\r\n\t\t\t'OCS-APIRequest: true')\r\n\t\t);\r\n\r\n\t\t$result = curl_exec($ch);\r\n\t\tcurl_close($ch);\r\n\r\n\t}\r\n\r\n\t$token = $argv[1];\r\n\t$message = $argv[2];\r\n\r\n\tNextcloudTalk_SendMessage($token, $message);\r\n?&gt;\r\n<\/pre>\n<\/li>\n<li>Test service from command line\n<pre class=\"brush:text\">php &lt;path_to_file&gt;\/nextcloudmessage.php &lt;channel_id&gt; &lt;message&gt;<\/pre>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Nextcloud Talk erm\u00f6glicht, einen vollumf\u00e4nglich eigenst\u00e4ndigen Push-Benachrichtigungs-Service zu realisieren. Mit PHP-Skript wird eine Push-Benachrichtigung an ein Smartphone gesendet.<\/p>","protected":false},"author":1,"featured_media":906,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ngg_post_thumbnail":0,"footnotes":""},"categories":[31,25],"tags":[50,49],"class_list":["post-897","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-tools","tag-iot","tag-nextcloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Push notification service with Nextcloud Talk - Developer Cookies Blog<\/title>\n<meta name=\"description\" content=\"Nextcloud Talk allows to implement a fully independent push notification service. Send with PHP script a push notification message to a smartphone.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Push notification service with Nextcloud Talk - Developer Cookies Blog\" \/>\n<meta property=\"og:description\" content=\"Nextcloud Talk allows to implement a fully independent push notification service. Send with PHP script a push notification message to a smartphone.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/\" \/>\n<meta property=\"og:site_name\" content=\"Developer Cookies Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-28T13:22:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-30T07:36:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Peter\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Peter\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/\"},\"author\":{\"name\":\"Peter\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"headline\":\"Push notification service with Nextcloud Talk\",\"datePublished\":\"2020-12-28T13:22:59+00:00\",\"dateModified\":\"2020-12-30T07:36:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/\"},\"wordCount\":240,\"publisher\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"image\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/iphone-5537230_1920.jpg\",\"keywords\":[\"IoT\",\"Nextcloud\"],\"articleSection\":[\"Linux\",\"Tools\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/\",\"name\":\"Push notification service with Nextcloud Talk - Developer Cookies Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/iphone-5537230_1920.jpg\",\"datePublished\":\"2020-12-28T13:22:59+00:00\",\"dateModified\":\"2020-12-30T07:36:41+00:00\",\"description\":\"Nextcloud Talk allows to implement a fully independent push notification service. Send with PHP script a push notification message to a smartphone.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/iphone-5537230_1920.jpg\",\"contentUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/iphone-5537230_1920.jpg\",\"width\":1920,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/push-notification-service-with-nextcloud-talk\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.developercookies.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Push notification service with Nextcloud Talk\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#website\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/\",\"name\":\"Developer Cookies Blog\",\"description\":\"Recipes and tutorials for developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.developercookies.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\",\"name\":\"Peter\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"caption\":\"Peter\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Push notification service with Nextcloud Talk - Developer Cookies Blog","description":"Nextcloud Talk erm\u00f6glicht, einen vollumf\u00e4nglich eigenst\u00e4ndigen Push-Benachrichtigungs-Service zu realisieren. Mit PHP-Skript wird eine Push-Benachrichtigung an ein Smartphone gesendet.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/","og_locale":"de_DE","og_type":"article","og_title":"Push notification service with Nextcloud Talk - Developer Cookies Blog","og_description":"Nextcloud Talk allows to implement a fully independent push notification service. Send with PHP script a push notification message to a smartphone.","og_url":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/","og_site_name":"Developer Cookies Blog","article_published_time":"2020-12-28T13:22:59+00:00","article_modified_time":"2020-12-30T07:36:41+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg","type":"image\/jpeg"}],"author":"Peter","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Peter","Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#article","isPartOf":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/"},"author":{"name":"Peter","@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"headline":"Push notification service with Nextcloud Talk","datePublished":"2020-12-28T13:22:59+00:00","dateModified":"2020-12-30T07:36:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/"},"wordCount":240,"publisher":{"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"image":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#primaryimage"},"thumbnailUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg","keywords":["IoT","Nextcloud"],"articleSection":["Linux","Tools"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/","url":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/","name":"Push notification service with Nextcloud Talk - Developer Cookies Blog","isPartOf":{"@id":"https:\/\/www.developercookies.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#primaryimage"},"image":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#primaryimage"},"thumbnailUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg","datePublished":"2020-12-28T13:22:59+00:00","dateModified":"2020-12-30T07:36:41+00:00","description":"Nextcloud Talk erm\u00f6glicht, einen vollumf\u00e4nglich eigenst\u00e4ndigen Push-Benachrichtigungs-Service zu realisieren. Mit PHP-Skript wird eine Push-Benachrichtigung an ein Smartphone gesendet.","breadcrumb":{"@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#primaryimage","url":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg","contentUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2020\/12\/iphone-5537230_1920.jpg","width":1920,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/www.developercookies.net\/de\/push-notification-service-with-nextcloud-talk\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.developercookies.net\/"},{"@type":"ListItem","position":2,"name":"Push notification service with Nextcloud Talk"}]},{"@type":"WebSite","@id":"https:\/\/www.developercookies.net\/#website","url":"https:\/\/www.developercookies.net\/","name":"Developer Cookies Blog","description":"Recipes and tutorials for developers","publisher":{"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.developercookies.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":["Person","Organization"],"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613","name":"Peter","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","caption":"Peter"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/897","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/comments?post=897"}],"version-history":[{"count":23,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/897\/revisions"}],"predecessor-version":[{"id":942,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/897\/revisions\/942"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/media\/906"}],"wp:attachment":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/media?parent=897"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/categories?post=897"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/tags?post=897"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}